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

body {
    line-height: 1.6;
    color: #333;
}

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

ul {
    list-style: none;
}

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

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    font-size: 16px;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 70px;
}

.hero-content {
    max-width: 700px;
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

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

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-us-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
}

/* Promises Section */
.promises {
    padding: 80px 0;
}

.promises-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.promise-item {
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 5px;
}

.promise-item.red {
    background-color: #bb2d3b;
    color: #fff;
}

.promise-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.promise-item p {
    font-size: 14px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.partners-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.partners-text {
    flex: 1;
}

.partners-text h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.partners-text ul {
    margin-bottom: 20px;
}

.partners-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.partners-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #bb2d3b;
}

.partners-image {
    flex: 1;
}

.partners-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
}

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

.blog-post {
    margin-bottom: 40px;
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

.blog-post h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-post p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-post a {
    color: #bb2d3b;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.testimonial-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.testimonial-item h3 {
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: #bb2d3b;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
}

.btn:hover {
    background-color: #9a1c29;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-address {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content p, .cookie-content ul {
    margin-bottom: 20px;
}

.cookie-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.cookie-content li::before {
    content: "•";
    position: absolute;
    left: 0;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.accept-btn {
    background-color: #bb2d3b;
    color: #fff;
}

.reject-btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

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

    .blog-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        padding: 10px 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .services-grid, .features-grid, .promises-grid, .blog-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero p {
        font-size: 16px;
    }

    .section-title, .why-us-title {
        font-size: 28px;
    }
}