/* ============================================
   VERDE CASINO - LIGHT THEME STYLESHEET
   ============================================
   This stylesheet implements a modern, responsive
   light theme for the Verde Casino website.
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden; /* Fix horizontal scroll on mobile */
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   HEADER COMPONENT
   ============================================ */
.header {
    background-color: #03823d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    overflow: hidden; /* Prevent scrollbars in header */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1002; /* Ensure it's above header */
    overflow: visible; /* Allow dropdown to show - this is safe as it's inside header which has overflow hidden */
}

/* Registration button with twinkling effect */
.header-register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #03823d;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.header-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    color: #03823d;
}

.header-register-btn:active {
    transform: translateY(0);
}

/* Twinkling effect */
.header-register-btn .twinkle {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.header-register-btn .btn-text {
    position: relative;
    z-index: 1;
}

/* Logo styling */
.logo-wrapper {
    flex-shrink: 0;
}

.logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Language switcher component with flag images */
.language-switcher-wrapper {
    position: relative;
    z-index: 1002; /* Higher than header to ensure dropdown shows */
    overflow: visible; /* Allow dropdown to show - positioned absolutely so it escapes header overflow */
}

/* Adjust language selector for dark header */
.header .language-select-custom {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.header .language-select-custom:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.header .language-select-custom:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.header .language-code {
    color: #ffffff;
}

.header .language-arrow {
    color: #ffffff;
}

.language-select-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.language-select-custom:hover {
    border-color: #4CAF50;
    background-color: #ffffff;
}

.language-select-custom:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.language-select-custom.active {
    border-color: #4CAF50;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Current flag and code display */
.language-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
}

.language-code {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-arrow {
    width: 12px;
    height: 12px;
    color: #666;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.language-select-custom.active .language-arrow {
    transform: rotate(180deg);
}

/* Language dropdown menu */
.language-dropdown {
    position: fixed; /* Use fixed positioning to escape header overflow */
    top: auto;
    right: auto;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 4px;
    min-width: 100px;
    z-index: 1003; /* Highest z-index to appear above everything */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    overflow: visible; /* Ensure dropdown content is visible */
}

.language-switcher-wrapper.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.language-option:hover {
    background-color: #f8f9fa;
}

.language-option[aria-selected="true"] {
    background-color: #e8f5e9;
    color: #4CAF50;
    font-weight: 600;
}

/* Flag images in dropdown */
.language-flag-option {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    flex-shrink: 0;
}

.language-code-option {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   BREADCRUMBS NAVIGATION
   ============================================ */
.breadcrumbs {
    background-color: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 6px;
    color: #ccc;
    font-weight: 300;
}

.breadcrumb-list a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.breadcrumb-list a:hover {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumb-list li:last-child span {
    color: #aaa;
    font-weight: 400;
}

/* ============================================
   HERO BANNER SECTION
   ============================================ */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
}

/* Semi-transparent CTA overlay block */
.cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.cta-text {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* ============================================
   POPULAR SLOTS SECTION
   ============================================ */
.popular-slots {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

/* Slots grid - 6 columns on desktop, responsive on mobile */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.slot-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.slot-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 40px 0;
}

.content-article {
    margin-bottom: 50px;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #4CAF50;
}

.content-article p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Lists styling */
.feature-list,
.steps-list,
.terms-list,
.bonus-list,
.game-categories-list,
.popular-slots-list,
.registration-steps-list,
.payment-options-list,
.start-today-list {
    margin: 20px 0;
    padding-left: 30px;
}

.feature-list li,
.steps-list li,
.terms-list li,
.bonus-list li,
.game-categories-list li,
.popular-slots-list li,
.registration-steps-list li,
.payment-options-list li,
.start-today-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

/* ============================================
   RESPONSIVE TABLE COMPONENT
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    min-width: 600px;
}

.bonus-table thead {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
}

.bonus-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #444;
}

.bonus-table tbody tr {
    transition: background-color 0.2s ease;
}

.bonus-table tbody tr:hover {
    background-color: #f8f9fa;
}

.bonus-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   CTA BUTTON LARGE
   ============================================ */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #4CAF50;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ============================================
   REVIEW SECTION
   ============================================ */
.review-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.review-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
}

.star {
    color: #FFD700;
    font-size: 24px;
    line-height: 1;
}

.review-rating-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.review-content {
    margin-top: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* ============================================
   FOOTER COMPONENT
   ============================================ */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 0 20px;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.payment-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-logo:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .article-title {
        font-size: 24px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media screen and (max-width: 768px) {
    /* Fix mobile viewport */
    html {
        font-size: 14px;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    /* Prevent any element from causing horizontal scroll */
    * {
        box-sizing: border-box;
    }
    
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }
    
    .container {
        max-width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: visible; /* Allow dropdown to show */
    }
    
    /* Ensure header container allows dropdown overflow */
    .header .container {
        overflow-x: hidden; /* Prevent horizontal scroll */
        overflow-y: visible; /* Allow language dropdown to show vertically */
    }
    
    /* Ensure header doesn't overflow - but allow dropdown to show */
    .header {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden; /* Prevent scrollbars in header */
    }
    
    .header-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden; /* Prevent scrollbars */
    }
    
    /* Language switcher needs to overflow */
    .language-switcher-wrapper {
        overflow: visible !important;
        z-index: 1002; /* Higher than header */
    }
    
    .language-dropdown {
        z-index: 1003 !important; /* Highest z-index */
    }
    
    /* Ensure main content doesn't overflow */
    main, section {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Header mobile adjustments */
    .header {
        padding: 12px 0;
    }
    
    .logo {
        max-height: 40px;
    }
    
    /* Header actions mobile */
    .header-actions {
        gap: 10px;
    }
    
    .header-register-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .language-select-custom {
        padding: 6px 10px;
        min-width: 70px;
        gap: 6px;
    }
    
    .language-flag {
        width: 18px;
        height: 13px;
    }
    
    .language-code {
        font-size: 12px;
    }
    
    .language-arrow {
        width: 10px;
        height: 10px;
    }
    
    .language-dropdown {
        min-width: 90px;
        right: 0;
    }
    
    .language-option {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .language-flag-option {
        width: 20px;
        height: 15px;
    }
    
    .language-code-option {
        font-size: 12px;
    }
    
    /* Breadcrumbs mobile */
    .breadcrumbs {
        padding: 6px 0;
    }
    
    .breadcrumb-list {
        font-size: 11px;
        gap: 4px;
    }
    
    .breadcrumb-list li:not(:last-child)::after {
        margin-left: 4px;
    }
    
    /* Hero banner mobile - centered CTA */
    .hero-banner {
        margin-bottom: 30px;
    }
    
    .cta-overlay {
        padding: 20px;
        max-width: 95%;
        width: 90%;
    }
    
    .cta-title {
        font-size: 18px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Slots grid mobile - 2 columns */
    .popular-slots {
        padding: 30px 0;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Content mobile */
    .content-section {
        padding: 30px 0;
    }
    
    .article-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .content-article p {
        font-size: 15px;
    }
    
    .content-article {
        margin-bottom: 35px;
    }
    
    /* Responsive table for mobile */
    .table-wrapper {
        margin: 20px 0;
        border-radius: 0;
    }
    
    .bonus-table {
        min-width: 100%;
        display: block;
    }
    
    .bonus-table thead {
        display: none;
    }
    
    .bonus-table tbody,
    .bonus-table tr,
    .bonus-table td {
        display: block;
        width: 100%;
    }
    
    .bonus-table tr {
        margin-bottom: 15px;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .bonus-table td {
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }
    
    .bonus-table td:last-child {
        border-bottom: none;
    }
    
    .bonus-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #4CAF50;
        display: block;
        margin-bottom: 5px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Lists mobile */
    .feature-list,
    .steps-list,
    .terms-list,
    .bonus-list,
    .game-categories-list,
    .popular-slots-list,
    .registration-steps-list,
    .payment-options-list,
    .start-today-list {
        padding-left: 20px;
        font-size: 14px;
    }
    
    /* CTA button mobile */
    .cta-button-large {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    /* FAQ mobile */
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* Review mobile */
    .review-section {
        padding: 30px 0;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .review-avatar {
        width: 70px;
        height: 70px;
    }
    
    .review-author-name {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 30px 0 15px;
    }
    
    .payment-logos {
        gap: 15px;
    }
    
    .payment-logo {
        height: 30px;
        max-width: 80px;
    }
    
    .payment-title {
        font-size: 18px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================ */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .cta-overlay {
        padding: 15px;
    }
    
    .cta-title {
        font-size: 16px;
    }
    
    .cta-text {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    .payment-logos {
        gap: 12px;
    }
    
    .payment-logo {
        height: 28px;
        max-width: 70px;
    }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
select:focus {
    outline: 3px solid #4CAF50;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-button,
    .cta-button-large {
        border: 2px solid #2c3e50;
    }
}



