/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Header */
.header {
    background-color: #1a1464;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ddd;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
}

/* Hero Section */
.hero {
    padding: 2rem;
    background-color: #f9f9f9;
    margin-bottom: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1464;
}

.hero-text p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border: none;
}

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

.btn-primary:hover {
    background-color: #131053;
}

.btn-secondary {
    background-color: #e5e5e5;
    color: #333;
}

.btn-secondary:hover {
    background-color: #d5d5d5;
}

.btn-submit {
    background-color: #1a1464;
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: #131053;
}

/* Popular Models Section */
.popular-models {
    padding: 3rem 2rem;
    background-color: #1a1464;
    color: white;
    margin-bottom: 2rem;
}

.popular-models h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-image {
    margin-bottom: 1rem;
    text-align: center;
}

.model-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1464;
}

/* About Section */
.about {
    padding: 3rem 2rem;
    background-color: #fff;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    color: #1a1464;
    margin-bottom: 1.5rem;
}

/* Catalog Section */
.catalog {
    padding: 3rem 2rem;
    background-color: #1a1464;
    color: white;
    margin-bottom: 2rem;
}

.catalog h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
}

.catalog-image {
    margin-bottom: 1rem;
    text-align: center;
}

.catalog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1464;
}

/* Service Section */
.service {
    padding: 3rem 2rem;
    background-color: #fff;
    margin-bottom: 2rem;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-text h2 {
    color: #1a1464;
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    margin-bottom: 2rem;
}

.reviews h2 {
    text-align: center;
    color: #1a1464;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.review-card {
    background-color: #1a1464;
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
}

.review-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.reviews-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

/* Contact Section */
.contact {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    margin-bottom: 2rem;
}

.contact h2 {
    text-align: center;
    color: #1a1464;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: #1a1464;
    color: white;
    padding: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo a {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: white;
    color: #1a1464;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    text-align: center;
    color: #1a1464;
    margin-bottom: 2rem;
}

.company-info {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #1a1464;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.signature {
    margin-top: 3rem;
    color: #666;
}

/* Thank You Page */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 2rem;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-content h1 {
    color: #1a1464;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    margin-bottom: 2rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-image {
        flex: 1;
    }
    
    .service-content {
        flex-direction: row;
    }
    
    .service-image {
        flex: 1;
    }
    
    .service-text {
        flex: 1;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1a1464;
        flex-direction: column;
        padding: 1rem 0;
        z-index: 100;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 0;
        padding: 0.75rem 2rem;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .popular-models, .catalog, .service, .reviews, .contact {
        padding: 2rem 1rem;
    }
    
    .models-grid, .catalog-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
}