* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    border-radius: 50%;
    border: 3px solid #fff;
}

.site-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.mobile-toggle {
    display: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #ffffff;
}

.hero-banner .container-fluid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #1e3c72;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #667eea;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.statistics-section {
    padding: 70px 0;
    background: #ffffff;
}

.statistics-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3c72;
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    color: #555;
}

.features-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3c72;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1e3c72;
}

.feature-box p {
    color: #666;
    font-size: 1.05rem;
}

.deals-showcase {
    padding: 70px 0;
    background: #ffffff;
}

.deals-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3c72;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.deal-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.deal-card img {
    width: 100%;
    height: auto;
    display: block;
}

.deal-content {
    padding: 25px;
}

.deal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1e3c72;
}

.deal-content p {
    color: #666;
    margin-bottom: 15px;
}

.discount-badge {
    background: #ff4757;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
}

.newsletter-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.newsletter-wrapper {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.btn-submit {
    padding: 15px 40px;
    background: #ffd700;
    color: #1e3c72;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3c72;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #999;
    font-size: 0.95rem;
}

.main-footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-column p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-column i {
    margin-right: 10px;
    color: #ffd700;
}

.company-reg {
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    padding: 30px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.8;
}

.cookie-content a {
    color: #2a5298;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cookie-btn.accept {
    background: #2a5298;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1e3c72;
}

.cookie-btn.decline {
    background: #e0e0e0;
    color: #333;
}

.cookie-btn.decline:hover {
    background: #d0d0d0;
}

.cookie-btn.customize {
    background: #667eea;
    color: #ffffff;
}

.cookie-btn.customize:hover {
    background: #764ba2;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deals-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-banner .container-fluid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .stats-grid,
    .deals-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}