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

body {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    background: #007bff;
    color: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    margin: 20px;
}

.cookie-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 25px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: white;
    color: #007bff;
}

.cookie-btn.refuse {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: #1e40af;
    font-size: 28px;
    font-weight: bold;
}
.nav-brand a{
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1e40af;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #0600B0;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('./assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(55, 48, 163, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    background: #00bcd4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #00acc1;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    font-weight: bold;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 20px;
    margin: 20px 20px 15px 20px;
    color: #333;
    font-weight: bold;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    font-size: 14px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.advantages {
    margin-top: 40px;
}

.advantages h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.advantage-item {
    margin-bottom: 20px;
}

.advantage-item h4 {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.advantage-item p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: #333;
    font-weight: bold;
}

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

.review-card {
    background: #e6f3ff;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: #00bcd4;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: bold;
}

.review-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

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

.why-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.why-item {
    margin-bottom: 25px;
}

.why-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.why-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.why-image img {
    width: 100%;
    border-radius: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: #333;
    font-weight: bold;
}

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

.faq-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: #1e40af;
    color: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question.blue-dark {
    background: #1e40af;
}

.faq-question.blue-light {
    background: #00bcd4;
}

.faq-question:hover {
    opacity: 0.9;
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-image {
    margin-top: 20px;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1e40af;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 15px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.footer-brand h2 {
    color: #1e40af;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #1e40af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .why-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .about-image {
        order: -1;
    }

    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-text {
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 30px 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 60px 0;
        min-height: 500px;
    }

    .services,
    .about,
    .reviews,
    .why-choose,
    .faq,
    .contact {
        padding: 60px 0;
    }

    .services h2,
    .about-text h2,
    .reviews h2,
    .why-text h2,
    .faq h2,
    .contact-text h2 {
        font-size: 24px;
    }

    .service-card,
    .review-card {
        padding: 20px;
    }

    .service-card h3 {
        margin: 15px 15px 10px 15px;
        font-size: 18px;
    }

    .service-card p {
        margin: 0 15px 15px 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services h2,
    .about-text h2,
    .reviews h2,
    .why-text h2,
    .faq h2,
    .contact-text h2 {
        font-size: 22px;
    }

    .nav-brand h1 {
        font-size: 24px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero {
        min-height: 450px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}