/* style/resources-sedie-2024-promotions.css */
.page-resources-sedie-2024-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
    padding-top: 0;
    padding-bottom: 0;
}

.page-resources-sedie-2024-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-sedie-2024-promotions__hero {
    background: linear-gradient(135deg, #0A192F, #1A304F); /* Slightly lighter gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
}

.page-resources-sedie-2024-promotions__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
}

.page-resources-sedie-2024-promotions__hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-resources-sedie-2024-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-resources-sedie-2024-promotions__btn:hover {
    transform: translateY(-2px);
}

.page-resources-sedie-2024-promotions__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-resources-sedie-2024-promotions__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #0A192F;
}

.page-resources-sedie-2024-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-resources-sedie-2024-promotions__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A192F; /* Dark blue text */
}

.page-resources-sedie-2024-promotions__btn--download {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
    margin-top: 20px;
}

.page-resources-sedie-2024-promotions__btn--download:hover {
    background-color: #e6c200;
}

.page-resources-sedie-2024-promotions__btn--outline {
    background-color: transparent;
    color: #E0E0E0;
    border: 2px solid #E0E0E0;
}

.page-resources-sedie-2024-promotions__btn--outline:hover {
    background-color: #E0E0E0;
    color: #0A192F;
}

.page-resources-sedie-2024-promotions__section {
    padding: 60px 0;
    text-align: left;
}

.page-resources-sedie-2024-promotions__section--alt {
    background-color: #1A304F; /* Darker blue for alternating sections */
}

.page-resources-sedie-2024-promotions__section h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-sedie-2024-promotions__section h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-bottom: 15px;
}

.page-resources-sedie-2024-promotions__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-resources-sedie-2024-promotions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-sedie-2024-promotions__image--center {
    margin: 40px auto;
}

.page-resources-sedie-2024-promotions__image--right {
    float: right;
    margin: 0 0 20px 40px;
    max-width: 400px;
}

.page-resources-sedie-2024-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sedie-2024-promotions__card {
    background-color: #0A192F;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-sedie-2024-promotions__card h3 {
    color: #FFD700;
    margin-top: 0;
}

.page-resources-sedie-2024-promotions__card p {
    color: #C0C0C0;
    flex-grow: 1;
}

.page-resources-sedie-2024-promotions__card .page-resources-sedie-2024-promotions__btn {
    margin-top: 20px;
    align-self: center;
}

.page-resources-sedie-2024-promotions__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-resources-sedie-2024-promotions__list li {
    background-color: #1A304F;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 4px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-resources-sedie-2024-promotions__list li strong {
    color: #FFD700;
}

.page-resources-sedie-2024-promotions__list--bullet {
    list-style: disc;
    padding-left: 40px;
}

.page-resources-sedie-2024-promotions__list--bullet li {
    background-color: transparent;
    border-left: none;
    padding: 5px 0;
    margin-bottom: 5px;
}

.page-resources-sedie-2024-promotions__app-download {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    background-color: #1A304F;
    padding: 40px;
    border-radius: 8px;
}

.page-resources-sedie-2024-promotions__app-info {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-resources-sedie-2024-promotions__app-info h3 {
    color: #FFD700;
    font-size: 2em;
}

.page-resources-sedie-2024-promotions__app-info p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-resources-sedie-2024-promotions__app-image {
    flex: 1;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-sedie-2024-promotions__section--responsible {
    text-align: center;
    background-color: #0A192F;
}

.page-resources-sedie-2024-promotions__section--responsible p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-resources-sedie-2024-promotions__cta {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #0A192F; /* Dark blue text on gold */
}

.page-resources-sedie-2024-promotions__cta h2 {
    color: #0A192F;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-resources-sedie-2024-promotions__cta p {
    color: #333; /* Slightly darker text for contrast */
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-resources-sedie-2024-promotions__cta-buttons .page-resources-sedie-2024-promotions__btn {
    margin: 0 15px;
}

.page-resources-sedie-2024-promotions__cta-buttons .page-resources-sedie-2024-promotions__btn--primary {
    background-color: #0A192F; /* Inverted colors for CTA buttons */
    color: #FFD700;
    border: 2px solid #0A192F;
}

.page-resources-sedie-2024-promotions__cta-buttons .page-resources-sedie-2024-promotions__btn--primary:hover {
    background-color: #1A304F;
    color: #FFD700;
}

.page-resources-sedie-2024-promotions__cta-buttons .page-resources-sedie-2024-promotions__btn--secondary {
    background-color: transparent;
    color: #0A192F;
    border: 2px solid #0A192F;
}

.page-resources-sedie-2024-promotions__cta-buttons .page-resources-sedie-2024-promotions__btn--secondary:hover {
    background-color: #0A192F;
    color: #FFD700;
}

.page-resources-sedie-2024-promotions__highlight {
    color: #FFD700; /* Gold for highlighted keywords */
    font-weight: bold;
}

.page-resources-sedie-2024-promotions a {
    color: #FFD700;
    text-decoration: none;
}

.page-resources-sedie-2024-promotions a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-sedie-2024-promotions__hero h1 {
        font-size: 2.5em;
    }
    .page-resources-sedie-2024-promotions__section h2 {
        font-size: 2em;
    }
    .page-resources-sedie-2024-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-sedie-2024-promotions__image--right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
    .page-resources-sedie-2024-promotions__app-download {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-sedie-2024-promotions__app-info {
        min-width: unset;
    }
    .page-resources-sedie-2024-promotions__app-image {
        max-width: 250px;
    }
    .page-resources-sedie-2024-promotions__cta h2 {
        font-size: 2em;
    }
    .page-resources-sedie-2024-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .page-resources-sedie-2024-promotions__cta-buttons .page-resources-sedie-2024-promotions__btn {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .page-resources-sedie-2024-promotions__hero h1 {
        font-size: 2em;
    }
    .page-resources-sedie-2024-promotions__section h2 {
        font-size: 1.8em;
    }
    .page-resources-sedie-2024-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-sedie-2024-promotions__hero p,
    .page-resources-sedie-2024-promotions__section p,
    .page-resources-sedie-2024-promotions__cta p {
        font-size: 1em;
    }
}