/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    background-color: #0A1419;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero .container {
    padding-left: 20px;
    padding-right: 50%;
    max-width: 1200px;
}

/* Navigation */
.navbar {
    background: linear-gradient(to bottom, #ffffff, #35BEAD);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #004750;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #004750;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #35BEAD;
    text-shadow: 0 0 5px rgba(53, 190, 173, 0.3);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #004750;
    color: white;
}

.btn-primary:hover {
    background: #003840;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #004750;
    border: 2px solid #004750;
}

.btn-secondary:hover {
    background: #004750;
    color: white;
    border-color: #004750;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #004750;
    color: #004750;
}

.btn-icon:hover {
    background: #004750;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #004750;
    transition: all 0.3s;
}

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff, #35BEAD);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    padding: 15px 0;
    color: #004750;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 71, 80, 0.1);
    font-weight: 500;
}

.mobile-menu .btn {
    width: 100%;
    margin-top: 10px;
    display: block;
    text-align: center;
}

/* Hero Section */
.hero {
    background-image: url('../images/v4176_912.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    background-position: right center;
    background-color: #004750;
    color: white;
    padding: 50px 0;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    isolation: isolate;
    width: 100%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        #0A1419 0%, 
        rgba(11, 28, 33, 0.8) 10%, 
        rgba(15, 43, 49, 0.5) 20%, 
        transparent 35%, 
        transparent 65%, 
        rgba(15, 43, 49, 0.5) 80%, 
        rgba(11, 28, 33, 0.8) 90%, 
        #0A1419 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: inherit;
    height: 100%;
}

.hero-content {
    max-width: 500px;
    padding-left: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    color: #004750;
}

.hero-buttons .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.hero-buttons .btn-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-image {
    display: none;
}

/* Bonus Sections */
.bonus-section {
    padding: 50px 0;
    background: transparent;
}

/* Bonus Section with background image */
.bonus-hero {
    background-image: url('../images/v4176_931.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    background-attachment: scroll;
    background-color: #004750;
    color: white;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    isolation: isolate;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        #0A1419 0%, 
        rgba(11, 28, 33, 0.8) 10%, 
        rgba(15, 43, 49, 0.5) 20%, 
        transparent 35%, 
        transparent 65%, 
        rgba(15, 43, 49, 0.5) 80%, 
        rgba(11, 28, 33, 0.8) 90%, 
        #0A1419 100%);
    z-index: 1;
}

.bonus-hero .container {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-right: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
}

.bonus-hero .bonus-content {
    max-width: 600px;
}

.bonus-hero .bonus-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 48px;
}

.bonus-hero .bonus-description {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 20px;
    margin-bottom: 30px;
}

.bonus-hero .bonus-buttons .btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    color: #004750;
}

.bonus-hero .bonus-buttons .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bonus-hero .bonus-buttons .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.bonus-hero .bonus-buttons .btn-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Second Bonus Section with different background image */
.bonus-hero-alt {
    background-image: url('../images/v4176_914.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-color: #004750;
    color: white;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    isolation: isolate;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.bonus-hero-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        #0A1419 0%, 
        rgba(11, 28, 33, 0.8) 10%, 
        rgba(15, 43, 49, 0.5) 20%, 
        transparent 35%, 
        transparent 65%, 
        rgba(15, 43, 49, 0.5) 80%, 
        rgba(11, 28, 33, 0.8) 90%, 
        #0A1419 100%);
    z-index: 1;
}

.bonus-hero-alt .container {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-right: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
}

.bonus-hero-alt .bonus-content {
    max-width: 600px;
}

.bonus-hero-alt .bonus-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 48px;
}

.bonus-hero-alt .bonus-description {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 20px;
    margin-bottom: 30px;
}

.bonus-hero-alt .bonus-buttons .btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    color: #004750;
}

.bonus-hero-alt .bonus-buttons .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bonus-hero-alt .bonus-buttons .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.bonus-hero-alt .bonus-buttons .btn-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Text Divider Section */
.text-divider {
    background: linear-gradient(to right, 
        #0A1419 0%, 
        #0B1C21 9%, 
        #0F2B31 18%, 
        #113238 30%, 
        #19555E 41%, 
        #1E6872 50%, 
        #19555E 59%, 
        #113238 70%, 
        #0F2B31 82%, 
        #0B1C21 91%, 
        #0A1419 100%
    );
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.divider-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.divider-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Alternative text divider style */
.text-divider-alt {
    background: linear-gradient(to right, 
        #0A1419 0%, 
        #0B1C21 9%, 
        #0F2B31 18%, 
        #113238 30%, 
        #19555E 41%, 
        #1E6872 50%, 
        #19555E 59%, 
        #113238 70%, 
        #0F2B31 82%, 
        #0B1C21 91%, 
        #0A1419 100%
    );
    margin-top: 40px;
}

.bonus-section.bonus-alt {
    background: transparent;
}

.bonus-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bonus-alt .bonus-card {
    background: #f8f9fa;
}

.bonus-title {
    font-size: 36px;
    font-weight: 700;
    color: #004750;
    margin-bottom: 20px;
}

.bonus-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.bonus-buttons {
    display: flex;
    gap: 15px;
}

.bonus-highlight {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #004750 0%, #35BEAD 100%);
    border-radius: 20px;
    color: white;
}

.bonus-percentage {
    display: block;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.bonus-label {
    display: block;
    font-size: 18px;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, 
        #0A1419 0%, 
        #0B1C21 9%, 
        #0F2B31 18%, 
        #113238 30%, 
        #19555E 41%, 
        #1E6872 50%, 
        #19555E 59%, 
        #113238 70%, 
        #0F2B31 82%, 
        #0B1C21 91%, 
        #0A1419 100%
    );
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cta-section .btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    color: #004750;
}

.cta-section .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.cta-section .btn-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Newsletter Section */
.newsletter {
    background: #004750;
    color: white;
    padding: 80px 0;
}

.newsletter .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    min-height: 300px;
}

/* Footer */
.footer {
    background: #0A1419;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #35BEAD;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #35BEAD;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 10px;
}

.footer-trustpilot {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trustpilot-text {
    color: #35BEAD;
    font-weight: 600;
    font-size: 14px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-legal-text {
    margin: 40px 0;
    padding: 40px;
    background: transparent;
    border-radius: 12px;
    border-top: 4px solid #004750;
}

.footer-legal-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-legal-text p:last-child {
    margin-bottom: 0;
}

.footer-legal-text strong {
    color: #35BEAD;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
    
    /* Reset to center alignment for desktop */
    .hero, .bonus-hero, .bonus-hero-alt {
        align-items: center;
    }
    
    .hero-content, .bonus-hero .bonus-content, .bonus-hero-alt .bonus-content {
        background: none;
        padding: 0;
        margin-bottom: 0;
    }
    
    .hero-title, .bonus-hero .bonus-title, .bonus-hero-alt .bonus-title {
        font-size: 56px;
    }
    
    .hero-subtitle, .bonus-hero .bonus-description, .bonus-hero-alt .bonus-description {
        font-size: 22px;
    }
}

/* Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    /* Desktop layout */
    .hero, .bonus-hero, .bonus-hero-alt {
        align-items: center;
    }
    
    .hero .container,
    .bonus-hero .container,
    .bonus-hero-alt .container {
        padding-right: 45%;
        align-items: center;
    }
    
    .hero-content, .bonus-hero .bonus-content, .bonus-hero-alt .bonus-content {
        background: none;
        padding: 0;
        margin-bottom: 0;
        max-width: 600px;
    }
    
    .hero-title, .bonus-hero .bonus-title, .bonus-hero-alt .bonus-title {
        font-size: 48px;
    }
    
    .hero-subtitle, .bonus-hero .bonus-description, .bonus-hero-alt .bonus-description {
        font-size: 20px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Container adjustments */
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    /* Navigation */
    .navbar .container {
        padding: 15px 30px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    /* Hero sections */
    .hero, .bonus-hero, .bonus-hero-alt {
        min-height: 350px;
        padding: 40px 0;
    }
    
    .hero .container,
    .bonus-hero .container,
    .bonus-hero-alt .container {
        padding: 0 30px;
        padding-right: 35%;
    }
    
    .hero-content, .bonus-hero .bonus-content, .bonus-hero-alt .bonus-content {
        max-width: 450px;
        margin: 0;
        background: none;
        padding: 0;
    }
    
    /* Text scaling for tablet */
    .hero-title, .bonus-hero .bonus-title, .bonus-hero-alt .bonus-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle, .bonus-hero .bonus-description, .bonus-hero-alt .bonus-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    /* Buttons */
    .hero-buttons, .bonus-buttons, .cta-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .btn-icon {
        width: 44px;
        height: 44px;
    }
    
    /* Text divider */
    .text-divider {
        padding: 50px 30px;
    }
    
    .divider-title {
        font-size: 22px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* CTA section */
    .cta-section {
        padding: 60px 30px;
    }
    
    .cta-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-title {
        font-size: 17px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-legal-text {
        padding: 30px;
    }
    
    .footer-legal-text p {
        font-size: 13px;
    }
    
    .footer-logo-img {
        height: 36px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    /* Hide desktop navigation */
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Scale down navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        padding: 10px 15px;
    }
    
    /* Adjust logo size on mobile */
    .logo-img {
        height: 20px;
    }
    
    /* Scale down buttons */
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Adjust hero and bonus sections */
    .hero, .bonus-hero, .bonus-hero-alt {
        background-attachment: scroll;
        padding: 30px 0;
    }
    
    .hero .container,
    .bonus-hero .container,
    .bonus-hero-alt .container {
        padding: 0 15px;
    }
    
    .hero .container,
    .bonus-hero .container,
    .bonus-hero-alt .container {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    
    .hero-content, .bonus-hero .bonus-content, .bonus-hero-alt .bonus-content {
        max-width: 100%;
        padding: 0;
        background: none;
    }
    
    /* Scale down text */
    .hero-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .hero-buttons, .bonus-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-buttons .btn, .bonus-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .btn-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Adjust bonus sections */
    .bonus-section {
        padding: 40px 0;
    }
    
    .bonus-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .bonus-hero .bonus-title,
    .bonus-hero-alt .bonus-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .bonus-hero .bonus-description,
    .bonus-hero-alt .bonus-description {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .bonus-description {
        font-size: 14px;
    }
    
    /* Text divider on mobile */
    .text-divider {
        padding: 30px 15px;
    }
    
    .divider-title {
        font-size: 18px;
        white-space: normal;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .bonus-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .bonus-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* CTA section on mobile */
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Newsletter form */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-form .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 14px;
        padding: 3px 0;
    }
    
    .footer-legal-text {
        padding: 20px;
        margin: 30px 0;
    }
    
    .footer-legal-text p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    /* Container padding */
    .container {
        padding: 0 12px;
    }
    
    /* Navigation */
    .navbar {
        padding: 8px 0;
    }
    
    .navbar .container {
        padding: 8px 12px;
    }
    
    .logo-img {
        height: 18px;
    }
    
    /* Buttons */
    .btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .btn-icon {
        width: 36px;
        height: 36px;
    }
    
    /* Hero sections */
    .hero, .bonus-hero, .bonus-hero-alt {
        min-height: 350px;
        max-height: 450px;
        padding: 15px 0;
        align-items: flex-end;
    }
    
    /* Text scaling */
    .hero-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .bonus-title,
    .cta-title {
        font-size: 20px;
    }
    
    .bonus-hero .bonus-title,
    .bonus-hero-alt .bonus-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .bonus-hero .bonus-description,
    .bonus-hero-alt .bonus-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .divider-title {
        font-size: 15px;
        padding: 0 5px;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 12px;
    }
    
    /* Text sections */
    .text-divider {
        padding: 25px 12px;
    }
    
    .cta-section {
        padding: 30px 12px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-link {
        font-size: 12px;
        padding: 2px 0;
    }
    
    .footer-logo-img {
        height: 24px;
    }
    
    .footer-legal-text {
        padding: 15px;
        margin: 20px 0;
    }
    
    .footer-legal-text p {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
}

/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Text scaling */
    .hero-title {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .bonus-hero .bonus-title,
    .bonus-hero-alt .bonus-title {
        font-size: 18px;
    }
    
    .bonus-hero .bonus-description,
    .bonus-hero-alt .bonus-description {
        font-size: 12px;
    }
    
    .divider-title {
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 18px;
    }
    
    .cta-subtitle {
        font-size: 11px;
    }
    
    /* Buttons */
    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .btn-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Hero sections */
    .hero {
        min-height: 330px;
        height: auto;
        padding-bottom: 10px;
        padding-top: calc(100vw * 0.8) !important;
        background-size: contain !important;
        background-position: center top !important;
    }
    
    .bonus-hero, .bonus-hero-alt {
        min-height: 400px;
        height: auto;
        padding-bottom: 15px;
        padding-top: calc(100vw * 0.6) !important;
        background-size: contain !important;
        background-position: center top !important;
    }
    
    .hero-content, .bonus-hero .bonus-content, .bonus-hero-alt .bonus-content {
        padding: 12px !important;
        font-size: 90% !important;
        background: rgba(0, 71, 80, 0.98) !important;
    }
    
    /* Sections padding */
    .text-divider {
        padding: 20px 10px;
    }
    
    .cta-section {
        padding: 25px 10px;
    }
    
    /* Footer */
    .footer-legal-text p {
        font-size: 9px;
    }
    
    .footer-copyright {
        font-size: 10px;
    }
}

/* Tablet background adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        background-size: contain !important;
        background-position: right center !important;
        min-height: 500px !important;
    }
    
    .bonus-hero, .bonus-hero-alt {
        background-size: contain !important;
        background-position: right center !important;
        min-height: 500px !important;
    }
    
    /* Stronger gradient for tablet using text section colors */
    .hero::before,
    .bonus-hero::before,
    .bonus-hero-alt::before {
        background: linear-gradient(to bottom, 
            #0A1419 0%, 
            rgba(11, 28, 33, 0.9) 8%, 
            rgba(15, 43, 49, 0.6) 15%, 
            rgba(17, 50, 56, 0.3) 25%, 
            transparent 35%, 
            transparent 65%, 
            rgba(17, 50, 56, 0.3) 75%, 
            rgba(15, 43, 49, 0.6) 85%, 
            rgba(11, 28, 33, 0.9) 92%, 
            #0A1419 100%) !important;
    }
}

@media (max-width: 767px) {
    .hero, .bonus-hero, .bonus-hero-alt {
        /* Show full image with contain */
        background-position: center top !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
        min-height: 450px !important;
        height: auto !important;
        align-items: flex-end !important;
        padding-bottom: 20px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Reduce spacing between sections */
    .text-divider {
        margin-top: -5px !important;
        padding: 20px 20px 15px 20px !important;
        margin-bottom: -5px !important;
    }
    
    .text-divider-alt {
        margin-top: -5px !important;
        margin-bottom: -5px !important;
        padding: 20px 20px 15px 20px !important;
    }
    
    .bonus-section {
        padding: 20px 0 !important;
        margin-top: 0 !important;
    }
    
    /* Use mobile-specific images */
    .hero {
        background-image: url('../images/v4176_912mobile.jpeg') !important;
    }
    
    .bonus-hero {
        background-image: url('../images/v4176_931mobile.png') !important;
    }
    
    .bonus-hero-alt {
        background-image: url('../images/v4176_914mobile.png') !important;
    }
    
    /* First section with proper spacing */
    .hero {
        padding-top: calc(100vw * 1.2) !important;
        min-height: 400px !important;
        background-size: contain !important;
        background-position: center top !important;
    }
    
    /* Other sections with normal spacing */
    .bonus-hero, .bonus-hero-alt {
        padding-top: calc(100vw * 1.5) !important;
        background-size: contain !important;
    }
    
    /* Lighter gradient overlay for mobile */
    .hero::before,
    .bonus-hero::before,
    .bonus-hero-alt::before {
        background: linear-gradient(to bottom, 
            rgba(10, 20, 25, 0.3) 0%, 
            rgba(11, 28, 33, 0.2) 5%, 
            rgba(15, 43, 49, 0.1) 10%, 
            transparent 20%, 
            transparent 80%, 
            rgba(15, 43, 49, 0.1) 90%, 
            rgba(11, 28, 33, 0.2) 95%, 
            rgba(10, 20, 25, 0.3) 100%) !important;
        display: block !important;
    }
    
    .hero .container,
    .bonus-hero .container,
    .bonus-hero-alt .container {
        padding-right: 15px !important;
        align-items: flex-end !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .hero-content, .bonus-hero .bonus-content, .bonus-hero-alt .bonus-content {
        background: rgba(0, 0, 0, 0.85) !important;
        padding: 15px !important;
        border-radius: 8px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .hero, .bonus-hero, .bonus-hero-alt {
        background-size: contain !important;
        background-position: center top !important;
        min-height: 400px !important;
        height: auto !important;
    }
    
    /* Further reduce spacing for small mobile */
    .text-divider {
        margin-top: -5px !important;
        padding: 15px 15px 10px 15px !important;
    }
    
    .text-divider-alt {
        margin-top: -5px !important;
        padding: 15px 15px 10px 15px !important;
    }
    
    .bonus-section {
        padding: 20px 0 !important;
    }
    
    /* Use mobile-specific images */
    .hero {
        background-image: url('../images/v4176_912mobile.jpeg') !important;
    }
    
    .bonus-hero {
        background-image: url('../images/v4176_931mobile.png') !important;
    }
    
    .bonus-hero-alt {
        background-image: url('../images/v4176_914mobile.png') !important;
    }
    
    .hero {
        padding-top: calc(100vw * 1.25) !important;
        min-height: 350px !important;
        background-size: contain !important;
    }
    
    .bonus-hero, .bonus-hero-alt {
        padding-top: calc(100vw * 1.55) !important;
    }
    
    .hero .container,
    .bonus-hero .container,
    .bonus-hero-alt .container {
        padding-right: 12px !important;
    }
    
    .hero-content, .bonus-hero .bonus-content, .bonus-hero-alt .bonus-content {
        padding: 12px !important;
        background: rgba(0, 0, 0, 0.85) !important;
    }
}

/* Desktop text size adjustments */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 36px !important;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    .bonus-hero .bonus-title,
    .bonus-hero-alt .bonus-title {
        font-size: 36px !important;
    }
    
    .bonus-hero .bonus-description,
    .bonus-hero-alt .bonus-description {
        font-size: 16px !important;
    }
    
    .divider-title {
        font-size: 24px !important;
    }
    
    .cta-title {
        font-size: 36px !important;
    }
    
    .cta-subtitle {
        font-size: 16px !important;
    }
    
    /* Make hero section scale similar to bonus-hero */
    .hero {
        background-position: center 20% !important;
        background-size: cover !important;
        min-height: 500px !important;
        padding: 30px 0 !important;
    }
    
    /* Fix positioning for bonus-hero (image 2) on regular desktop */
    .bonus-hero {
        background-position: center top !important;
        background-size: contain !important;
        min-height: 600px !important;
    }
}

/* Desktop adjustments */
@media (min-width: 1440px) {
    .hero {
        background-size: cover !important;
        background-position: center 20% !important;
        min-height: 550px !important;
        padding: 30px 0 !important;
    }
    
    .bonus-hero, .bonus-hero-alt {
        background-size: contain !important;
        background-position: center top !important;
        min-height: 700px !important;
    }
}

/* Additional mobile optimizations for background images */
@media (max-width: 767px) {
    /* Ensure images load with proper fallback */
    .hero {
        background-image: url('../images/v4176_912.png');
        background-color: #004750;
    }
    
    .bonus-hero {
        background-image: url('../images/v4176_931.png');
        background-color: #004750;
    }
    
    .bonus-hero-alt {
        background-image: url('../images/v4176_914.png');
        background-color: #004750;
    }
    
    /* iOS Safari fixes */
    @supports (-webkit-touch-callout: none) {
        .hero, .bonus-hero, .bonus-hero-alt {
            background-attachment: scroll !important;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
    }
}

/* Ensure smooth transitions */
.hero, .bonus-hero, .bonus-hero-alt {
    transition: background-size 0.3s ease;
}