/* Lotto Australia - Unique Australian Theme CSS */
/* Using CSS Grid + Flexbox architecture */

/* Enhanced Typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Righteous:wght@400&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.logo {
    font-family: 'Righteous', cursive;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: linear-gradient(135deg, #fef9e7 0%, #f4d03f 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #2c5530;
    animation: popupSlideIn 0.5s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-content h2 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.popup-content p {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #f4d03f;
    padding: 1.5rem;
    border-radius: 15px;
    max-width: 350px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #f4d03f;
    animation: cookieSlideIn 0.5s ease-out;
}

@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Enhanced Button Styles */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.btn-secondary:hover {
    background: #f4d03f;
    color: #2c5530;
}

/* Advantages Section */
.advantages {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(254, 249, 231, 0.9), rgba(244, 208, 63, 0.1));
}

.advantages h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #2c5530, #f4d03f);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.2);
    border-color: #f4d03f;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-card h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.advantage-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Schedule Section */
.schedule {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #fef9e7;
}

.schedule h2 {
    text-align: center;
    color: #f4d03f;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.schedule-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #fef9e7;
    font-weight: 300;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.draw-card {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, rgba(254, 249, 231, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(244, 208, 63, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.draw-card:hover {
    transform: translateY(-5px);
    border-color: #f4d03f;
    box-shadow: 0 15px 35px rgba(244, 208, 63, 0.2);
}

.draw-day {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 0.5rem;
}

.draw-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fef9e7;
    margin-bottom: 0.5rem;
    font-family: 'Righteous', cursive;
}

.draw-time {
    font-size: 1rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.draw-prize {
    font-size: 2rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.draw-btn {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(254, 249, 231, 0.3));
}

.reviews h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
    border-left: 5px solid #f4d03f;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-style: italic;
    quotes: """ """;
}

.review-card p::before {
    content: open-quote;
    font-size: 2rem;
    color: #f4d03f;
    line-height: 0;
}

.review-card p::after {
    content: close-quote;
    font-size: 2rem;
    color: #f4d03f;
    line-height: 0;
}

.reviewer {
    font-weight: 700;
    color: #2c5530;
    font-size: 0.9rem;
}

/* Disclaimer Section */
.disclaimer {
    padding: 3rem 0;
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: #fef9e7;
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f4d03f;
    font-family: 'Righteous', cursive;
}

.disclaimer p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.help-resources {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.help-resources p {
    margin-bottom: 0.5rem;
}

.help-resources a {
    color: #f4d03f;
    text-decoration: none;
    font-weight: 700;
}

.help-resources a:hover {
    text-decoration: underline;
}

.org-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.org-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.45);
    padding: 0.5rem;
}

.org-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.4);
}

.age-restriction {
    background: #f4d03f;
    color: #2c5530;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fef9e7;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3a23 0%, #2c5530 100%);
    color: #fef9e7;
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-btn {
    color: #f4d03f;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid #f4d03f;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-btn:hover {
    background: #f4d03f;
    color: #2c5530;
}

.footer-orgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-org-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.45);
    padding: 0.3rem;
}

.footer-org-logo:hover {
    transform: scale(1.1);
}

.footer-age {
    background: #f4d03f;
    color: #2c5530;
    padding: 0.3rem 0.8rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fef9e7;
}

.footer-copyright {
    border-top: 1px solid rgba(244, 208, 63, 0.3);
    padding-top: 1rem;
    color: #d4a574;
    font-size: 0.9rem;
}

/* Hidden class for popups */
.hidden {
    display: none !important;
}

/* ========================================= */
/* ABOUT PAGE STYLES */
/* ========================================= */

.about-hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(254, 249, 231, 0.9), rgba(244, 208, 63, 0.1));
}

.about-hero h1 {
    color: #2c5530;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.about-hero h2 {
    color: #555;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
}

.our-story {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.story-content h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c2c2c;
}

.story-highlight {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #fef9e7;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.story-highlight h3 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.story-highlight ul {
    list-style: none;
    padding: 0;
}

.story-highlight li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.team {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(254, 249, 231, 0.3));
}

.team h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: #f4d03f;
    font-weight: 600;
    margin-bottom: 1rem;
    background: #2c5530;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

.team-member p {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.member-location {
    color: #2c5530;
    font-weight: 600;
    font-size: 0.9rem;
}

.values {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #fef9e7;
}

.values h2 {
    text-align: center;
    color: #f4d03f;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(244, 208, 63, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #f4d03f;
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stats {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(254, 249, 231, 0.9), rgba(244, 208, 63, 0.1));
}

.stats h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.1);
    border-top: 4px solid #f4d03f;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-family: 'Righteous', cursive;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.stat-note {
    color: #888;
    font-style: italic;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #fef9e7;
    text-align: center;
}

.cta-content h2 {
    color: #f4d03f;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================= */
/* CONTACT PAGE STYLES */
/* ========================================= */

.contact-hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(254, 249, 231, 0.9), rgba(244, 208, 63, 0.1));
}

.contact-hero h1 {
    color: #2c5530;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.contact-hero h2 {
    color: #555;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
}

.contact-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-methods h2 {
    color: #2c5530;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    font-family: 'Righteous', cursive;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 15px;
    border-left: 4px solid #f4d03f;
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.method-content h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.method-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-form-section {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    padding: 3rem;
    border-radius: 20px;
    color: #fef9e7;
}

.contact-form-section h2 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f4d03f;
    font-weight: 600;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(244, 208, 63, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #fef9e7;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(254, 249, 231, 0.7);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #f4d03f;
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.2);
}

.form-input.error, .form-textarea.error {
    border-color: #e74c3c;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox {
    margin-top: 0.2rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.faq {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(254, 249, 231, 0.3));
}

.faq h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
    border-left: 4px solid #f4d03f;
}

.faq-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    line-height: 1.6;
}

.faq-item a {
    color: #2c5530;
    text-decoration: underline;
}

.office-hours {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #fef9e7;
}

.office-hours h2 {
    text-align: center;
    color: #f4d03f;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.hours-card h3 {
    color: #f4d03f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4d03f;
    text-align: center;
    margin: 1rem 0;
}

/* ========================================= */
/* RESPONSIBLE PLAY PAGE STYLES */
/* ========================================= */

.responsible-hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(254, 249, 231, 0.9), rgba(244, 208, 63, 0.1));
}

.responsible-hero h1 {
    color: #2c5530;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.responsible-hero h2 {
    color: #555;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
}

.emergency-help {
    padding: 3rem 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fef9e7;
}

.emergency-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #f4d03f;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-card h2 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: #f4d03f;
    margin-bottom: 0.5rem;
}

.helpline-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fef9e7;
    margin: 0.5rem 0;
}

.warning-signs {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.warning-signs h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.signs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.sign-category {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
    border-left: 4px solid #e74c3c;
}

.sign-category h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sign-category ul {
    list-style: none;
    padding: 0;
}

.sign-category li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.sign-category li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.healthy-gambling {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(254, 249, 231, 0.3));
}

.healthy-gambling h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
    border-top: 4px solid #27ae60;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-weight: 700;
}

.our-commitment {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #fef9e7;
}

.our-commitment h2 {
    text-align: center;
    color: #f4d03f;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.commitment-item h3 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.self-assessment {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.self-assessment h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.self-assessment > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.assessment-questions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.question-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    box-shadow: 0 3px 15px rgba(44, 85, 48, 0.1);
}

.assessment-result {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fef9e7;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #f4d03f;
}

.get-help {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(254, 249, 231, 0.3));
}

.get-help h2 {
    text-align: center;
    color: #2c5530;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-family: 'Righteous', cursive;
}

.help-resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.help-resource {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
    border-top: 4px solid #3498db;
}

.resource-logo {
    margin-bottom: 1rem;
}

.resource-img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
}

.help-resource h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
}

.help-resource a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.help-resource a:hover {
    text-decoration: underline;
}

.family-friends {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    color: #fef9e7;
}

.family-friends h2 {
    text-align: center;
    color: #f4d03f;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.support-tip {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.support-tip h3 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* ========================================= */
/* PRIVACY POLICY PAGE STYLES */
/* ========================================= */

.privacy-hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(254, 249, 231, 0.9), rgba(244, 208, 63, 0.1));
}

.privacy-hero h1 {
    color: #2c5530;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.privacy-hero h2 {
    color: #555;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.last-updated {
    color: #888;
    font-size: 1rem;
}

.privacy-summary {
    padding: 3rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fef9e7;
}

.summary-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.summary-card h2 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.summary-card ul {
    list-style: none;
    padding: 0;
}

.summary-card li {
    margin-bottom: 0.8rem;
    padding-left: 0;
    line-height: 1.5;
}

.privacy-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.toc {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a23 100%);
    padding: 2rem;
    border-radius: 15px;
    color: #fef9e7;
    position: sticky;
    top: 100px;
    max-height: fit-content;
}

.toc h3 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: #fef9e7;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(244, 208, 63, 0.3);
    transition: color 0.3s ease;
}

.toc a:hover {
    color: #f4d03f;
}

.policy-sections {
    flex: 1;
}

.policy-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.1);
    border-left: 4px solid #3498db;
}

.policy-section h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Righteous', cursive;
}

.policy-section h3 {
    color: #3498db;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.policy-section h4 {
    color: #2c5530;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.sharing-principle {
    background: linear-gradient(135deg, #f4d03f 0%, #e6c200 100%);
    color: #2c5530;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    font-weight: 600;
}

.cookie-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: rgba(52, 152, 219, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.cookie-type h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-option {
    background: rgba(52, 152, 219, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid #3498db;
}

.contact-option h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

/* Desktop Media Queries */
@media (min-width: 768px) {
    .advantages-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .org-logos {
        gap: 2rem;
    }

    .org-logo {
        height: 70px;
    }

    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .signs-grid,
    .tips-grid,
    .commitment-grid,
    .help-resources-grid,
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-contacts,
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: 250px 1fr;
    }

    .cookie-types,
    .contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 970px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-links {
        gap: 2rem;
    }

    .popup-content {
        width: 500px;
    }

    .cookie-banner {
        max-width: 400px;
    }

    .advantages-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .signs-grid,
    .tips-grid,
    .commitment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Enhanced animations for desktop */
@media (min-width: 900px) {
    .advantage-card:hover,
    .team-member:hover,
    .tip-card:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .draw-card:hover {
        transform: translateY(-10px) scale(1.03);
    }

    .review-card:hover,
    .faq-item:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 3px solid currentColor;
    }

    .advantage-card,
    .draw-card,
    .review-card,
    .team-member,
    .tip-card,
    .faq-item,
    .policy-section {
        border: 2px solid #2c5530;
    }
}
