/* style/resources-sedie-terms-odds.css */

.page-resources-sedie-terms-odds {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Primary background color */
    line-height: 1.6;
}

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

.page-resources-sedie-terms-odds__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #362f0a 100%); /* Dark blue to slightly darker gold-ish for depth */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    border-bottom: 3px solid #FFD700;
}

.page-resources-sedie-terms-odds__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sedie-terms-odds__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f5e6d0;
}

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

.page-resources-sedie-terms-odds__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
}

.page-resources-sedie-terms-odds__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
}

.page-resources-sedie-terms-odds__btn--secondary {
    background-color: #1a2c42; /* Slightly lighter dark blue */
    color: #FFD700; /* Gold */
    border: 1px solid #FFD700;
}

.page-resources-sedie-terms-odds__btn--secondary:hover {
    background-color: #0a192f; /* Darker blue */
    color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-sedie-terms-odds__content-section {
    padding: 60px 0;
}

.page-resources-sedie-terms-odds__main-content {
    background-color: #1a2c42; /* Slightly lighter dark blue for content blocks */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-sedie-terms-odds__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-sedie-terms-odds__subsection-title {
    font-size: 1.6em;
    color: #f5e6d0; /* Light text */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-sedie-terms-odds p {
    margin-bottom: 15px;
    color: #c0c0c0; /* Slightly muted light text */
}

.page-resources-sedie-terms-odds ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.page-resources-sedie-terms-odds ul li {
    margin-bottom: 8px;
}

.page-resources-sedie-terms-odds ul li strong {
    color: #f5e6d0;
}

.page-resources-sedie-terms-odds__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sedie-terms-odds__table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #362f0a;
}

.page-resources-sedie-terms-odds__odds-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-resources-sedie-terms-odds__odds-table th,
.page-resources-sedie-terms-odds__odds-table td {
    border: 1px solid #362f0a; /* Darker border for table */
    padding: 12px 15px;
    text-align: left;
    color: #f5e6d0;
}

.page-resources-sedie-terms-odds__odds-table th {
    background-color: #0A192F; /* Primary dark blue */
    color: #FFD700; /* Gold */
    font-weight: bold;
    text-transform: uppercase;
}

.page-resources-sedie-terms-odds__odds-table tr:nth-child(even) {
    background-color: #1a2c42; /* Alternate row background */
}

.page-resources-sedie-terms-odds__odds-table tr:hover {
    background-color: #2b3e55; /* Hover effect */
}

.page-resources-sedie-terms-odds__faq-item {
    background-color: #0A192F; /* Dark blue for FAQ item */
    border: 1px solid #362f0a;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-resources-sedie-terms-odds__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
}

.page-resources-sedie-terms-odds__faq-answer {
    color: #c0c0c0;
}

.page-resources-sedie-terms-odds__cta-footer {
    text-align: center;
    background-color: #0A192F; /* Primary dark blue */
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    border: 1px solid #FFD700;
}

.page-resources-sedie-terms-odds__cta-text {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 25px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-sedie-terms-odds__hero-title {
        font-size: 2.5em;
    }

    .page-resources-sedie-terms-odds__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-sedie-terms-odds__section-title {
        font-size: 1.8em;
    }

    .page-resources-sedie-terms-odds__subsection-title {
        font-size: 1.4em;
    }

    .page-resources-sedie-terms-odds__main-content {
        padding: 25px;
    }

    .page-resources-sedie-terms-odds__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-sedie-terms-odds__cta-text {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-resources-sedie-terms-odds__hero-title {
        font-size: 2em;
    }

    .page-resources-sedie-terms-odds__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-sedie-terms-odds__section-title {
        font-size: 1.6em;
    }

    .page-resources-sedie-terms-odds__subsection-title {
        font-size: 1.2em;
    }

    .page-resources-sedie-terms-odds__main-content {
        padding: 15px;
    }

    .page-resources-sedie-terms-odds__odds-table th,
    .page-resources-sedie-terms-odds__odds-table td {
        padding: 8px 10px;
        font-size: 0.9em;
    }

    .page-resources-sedie-terms-odds__cta-text {
        font-size: 1.2em;
    }
}