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

body {
    overflow-x: hidden;
}

/* Colors */
:root {
    --primary-blue: #0d1b54;
    --dark-blue: #081033;
    --light-blue: #3a4b98;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

/* Typography */
h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-align: center;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

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

section {
    padding: 50px 0;
}

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

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

/* Hero Section */
#hero {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-text p {
    color: var(--white);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

/* About Section */
#about {
    padding: 60px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

/* Stats Section */
#stats {
    padding: 50px 0;
}

.stats-title {
    text-align: center;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 14px;
}

/* Why Choose Us Section */
#why-choose {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.choose-content p {
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

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

/* Services Section */
#services {
    padding: 60px 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 15px;
}

/* Testimonials Section */
#testimonials {
    padding: 60px 0;
    background-color: var(--primary-blue);
    color: var(--white);
}

#testimonials h2 {
    color: var(--white);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

/* Blog Section */
#blog {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Contact Section */
#contact {
    padding: 60px 0;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    min-height: 100px;
}

.submit-btn {
    padding: 12px 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--light-blue);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px 0;
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 50%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cookie-text {
    margin-bottom: 20px;
    max-width: 800px;
}

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

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

.accept-btn {
    background-color: var(--white);
    color: var(--primary-blue);
}

.refuse-btn {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, 
    .about-content {
        flex-direction: column;
    }

    .stat-box {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .service-card,
    .blog-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}