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

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

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

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

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

/* Header */
header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: left;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #3e8e41;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.feature-card {
    display: flex;
    margin-bottom: 60px;
}

.feature-image {
    flex: 1;
    max-width: 50%;
}

.feature-content {
    flex: 1;
    padding: 30px;
}

.feature-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

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

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-list {
    list-style-type: none;
    margin: 20px 0;
}

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

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.price {
    font-weight: bold;
    color: #4CAF50;
    margin-top: 20px;
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background-color: white;
}

.methodology-content {
    display: flex;
    align-items: center;
}

.methodology-text {
    flex: 1;
    padding-right: 50px;
}

.methodology-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.methodology-image {
    flex: 1;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
    padding-left: 50px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonials p.subtitle {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    display: flex;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 20px;
}

.testimonial-text {
    flex: 1;
}

.testimonial-name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.contact-info {
    grid-column: 2;
}

.contact-address {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.contact-method {
    margin-bottom: 10px;
}

.submit-btn {
    grid-column: 1;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

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

.footer-links a {
    margin: 0 15px;
    color: #ddd;
    transition: color 0.3s;
}

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

.footer-logo {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.cookie-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.cookie-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cookie-accept {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-settings {
    background-color: transparent;
    border: 1px solid #4CAF50;
    color: #4CAF50;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept:hover {
    background-color: #3e8e41;
}

.cookie-settings:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

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

    .feature-card, .methodology-content, .about-content {
        flex-direction: column;
    }

    .feature-image, .methodology-image, .about-image {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .methodology-text, .about-text {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-column: 1;
    }

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

    .testimonial-image {
        margin: 0 auto 20px;
    }

    .testimonial-text {
        text-align: center;
    }
}