.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}
.page-promotions__hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    background-color: #26A9E0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: var(--header-offset, 120px);
}
.page-promotions__hero-content {
    max-width: 600px;
    z-index: 1;
    text-align: left;
}
.page-promotions__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 50%;
    z-index: 1;
}
.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}
.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}
.page-promotions__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}
.page-promotions__section {
    padding: 60px 20px;
    text-align: center;
}
.page-promotions__content-area {
    max-width: 1200px;
    margin: 0 auto;
}
.page-promotions__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: bold;
}
.page-promotions__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}
.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.page-promotions__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page-promotions__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}
.page-promotions__card-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}
.page-promotions__card-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}
.page-promotions__guide-section {
    background-color: #26A9E0;
    color: #ffffff;
}
.page-promotions__guide-section .page-promotions__section-title,
.page-promotions__guide-section .page-promotions__section-description {
    color: #ffffff;
}
.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}
.page-promotions__step-item {
    background-color: #ffffff;
    color: #333333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #EA7C07;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px auto;
}
.page-promotions__step-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}
.page-promotions__step-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}
.page-promotions__terms-section {
    background-color: #f8f8f8;
}
.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}
.page-promotions__term-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.page-promotions__term-heading {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}
.page-promotions__term-text {
    font-size: 1em;
    color: #555555;
}
.page-promotions__optimization-section {
    background-color: #26A9E0;
    color: #ffffff;
}
.page-promotions__optimization-section .page-promotions__section-title,
.page-promotions__optimization-section .page-promotions__section-description {
    color: #ffffff;
}
.page-promotions__optimization-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    text-align: left;
}
.page-promotions__optimization-text {
    flex: 1;
}
.page-promotions__optimization-image-wrapper {
    flex: 1;
    max-width: 50%;
}
.page-promotions__optimization-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.page-promotions__sub-title {
    font-size: 1.6em;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}
.page-promotions__paragraph {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}
.page-promotions__faq-section {
    background-color: #ffffff;
}
.page-promotions__faq-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}
.page-promotions__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    transition: background-color 0.3s ease;
}
.page-promotions__faq-question:hover {
    background-color: #f0f0f0;
}
.page-promotions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #EA7C07;
    transition: transform 0.3s ease;
}
.page-promotions__faq-item.active .page-promotions__faq-toggle {
    transform: rotate(45deg);
}
.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: #555555;
}
.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 25px 25px;
}
.page-promotions__faq-answer p {
    margin: 0;
    font-size: 1em;
}
.page-promotions__cta-section {
    background-color: #26A9E0;
    color: #ffffff;
    padding: 80px 20px;
}
.page-promotions__cta-section .page-promotions__section-title,
.page-promotions__cta-section .page-promotions__section-description {
    color: #ffffff;
}
.page-promotions__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}
.page-promotions__btn-primary {
    background-color: #EA7C07;
    color: #ffffff;
    border: 2px solid #EA7C07;
}
.page-promotions__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
    transform: translateY(-2px);
}
.page-promotions__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}
.page-promotions__btn-secondary:hover {
    background-color: #e0f2ff;
    color: #1a8cc4;
    transform: translateY(-2px);
}
.page-promotions__btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}
.page-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 1024px) {
    .page-promotions__hero-section {
        flex-direction: column;
        padding: 80px 20px;
        gap: 30px;
        padding-top: var(--header-offset, 120px);
    }
    .page-promotions__hero-content {
        text-align: center;
        max-width: 100%;
    }
    .page-promotions__hero-image-wrapper {
        max-width: 80%;
    }
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__hero-actions {
        justify-content: center;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__optimization-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__optimization-image-wrapper {
        max-width: 80%;
        order: -1;
    }
    .page-promotions__sub-title {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .page-promotions__hero-section {
        flex-direction: column;
        padding: 40px 15px !important;
        gap: 20px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions__hero-content {
        text-align: center !important;
        max-width: 100% !important;
    }
    .page-promotions__hero-title {
        font-size: 2.2em !important;
        margin-bottom: 15px !important;
    }
    .page-promotions__hero-description {
        font-size: 1em !important;
        margin-bottom: 25px !important;
    }
    .page-promotions__hero-actions {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 15px !important;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-promotions__card {
        padding: 20px !important;
    }
    .page-promotions__card-image {
        height: 180px !important;
    }
    .page-promotions__card-title {
        font-size: 1.4em !important;
    }
    .page-promotions__card-text {
        font-size: 0.95em !important;
    }
    .page-promotions__steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__hero-image-wrapper,
    .page-promotions__optimization-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__faq-container,
    .page-promotions__terms-list,
    .page-promotions__optimization-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        flex-direction: column !important;
    }
    .page-promotions__section-title {
        font-size: 1.8em !important;
    }
    .page-promotions__section-description {
        font-size: 0.95em !important;
        margin-bottom: 30px !important;
    }
    .page-promotions__term-heading {
        font-size: 1.2em !important;
    }
    .page-promotions__term-text {
        font-size: 0.9em !important;
    }
    .page-promotions__sub-title {
        font-size: 1.4em !important;
    }
    .page-promotions__paragraph {
        font-size: 0.95em !important;
    }
    .page-promotions__faq-question {
        font-size: 1.1em !important;
        padding: 15px 20px !important;
    }
    .page-promotions__faq-answer {
        padding: 0 20px !important;
    }
    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 10px 20px 20px 20px !important;
    }
    .page-promotions__cta-section {
        padding: 60px 15px !important;
    }
}