/* Reset and base styles restricted to promotions-page */
.promotions-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial !important;

}

.promotions-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /*background-color: #ebebeb;*/
    color: #242323;
    line-height: 1.6;
}

.promotions-page .container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 32px 16px;
    min-height: 100vh;
}

.promotions-page .header {
    text-align: center;
    margin-bottom: 32px;
}

.promotions-page .header p {
    font-size: 40px;
    font-weight: 300;
    color: #242323;
        font-family: 'Forum', serif;
}

.promotions-page .hero-section {
    position: relative;
    margin-bottom: 32px;
    overflow: hidden;
}

.promotions-page .hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.promotions-page .hero-text {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.promotions-page .hero-text h2 {
    font-size: 64px;
    margin: 0;
}

.promotions-page .content-section {
    max-width: 512px;
}

.promotions-page .content-section h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #242323;

}

.promotions-page .content-section p {
    font-size: 14px;
    margin-bottom: 16px;
    color: #242323;
    line-height: 1.5;
}

.promotions-page .content-section .subtitle {
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promotions-page .container {
        padding: 16px 8px;
    }

    .promotions-page .header h1 {
        font-size: 24px;
    }

    .promotions-page .hero-text {
        left: 16px;
    }

    .promotions-page .hero-text h2 {
        font-size: 32px;
    }

    .promotions-page .content-section {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .promotions-page .hero-text h2 {
        font-size: 24px;
    }

    .promotions-page .hero-text {
        left: 12px;
    }
}