 /* Reset CSS */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Variables */
:root {
    --primary-color: #1a56db;
    --secondary-color: #0f2552;
    --accent-color: #3b82f6;
    --light-color: #f8fafc;
    --dark-color: #111827;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
}

/* General Styles */
body {
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--secondary-color);
}

section {
    padding: 50px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    font-weight: 500;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
    background-image: linear-gradient(rgba(15, 37, 82, 0.9), rgba(15, 37, 82, 0.9)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
}

/* About Section */
.about {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 50px 0;
}

.about-img {
    flex: 1;
}

.about-content {
    flex: 1;
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.why-us {
    display: flex;
    gap: 30px;
    align-items: center;
}

.why-us-img {
    flex: 1;
}

.why-us-content {
    flex: 1;
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.why-us-content h2 {
    text-align: left;
}

.why-us-content ul {
    margin-top: 20px;
}

.why-us-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.why-us-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #6a7fc8;
    color: white;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #7e90d4;
}

.faq-answer.active {
    padding: 15px 20px;
    max-height: 200px;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px 10px 0 0;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-consent h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookie-consent p {
    margin-bottom: 20px;
}

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

.cookie-btn {
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.accept-btn {
    background-color: #6a7fc8;
    color: white;
    border: none;
}

.info-btn {
    background-color: #6a7fc8;
    color: white;
    border: none;
}

.hidden {
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about,
    .why-us {
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }
}