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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
header {
    background-color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
}

.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    background-color: #00d084;
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    font-size: 2.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
    font-weight: bold;
}

.hero-text {
    background-color: white;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    max-width: 800px;
}

.hero-text p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Who We Are Section */
.who-we-are {
    background-color: white;
    padding: 4rem 2rem;
}

.who-we-are h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
}

.who-we-are .intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.who-we-are p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.values {
    margin: 2rem 0;
}

.mission {
    margin-top: 2rem;
}

/* Services Section */
.services {
    background-color: white;
    padding: 4rem 2rem;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    background-color: white;
    padding: 4rem 2rem;
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #00d084;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies {
    padding: 0;
}

.case-studies-bg {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./img/1.jpeg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
}

.case-studies h2 {
    background-color: #00d084;
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 3rem;
    font-weight: bold;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
}

.case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.case-card p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    padding: 4rem 2rem;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #00d084;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: white;
}

.contact-box {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    background-color: #00d084;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    float: right;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #00b870;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

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

.footer-bottom {
    background-color: #00d084;
    padding: 1rem;
    margin-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

/* Thank You Page */
.thank-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 4rem 2rem;
}

.thank-container {
    text-align: center;
    max-width: 700px;
}

.thank-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.thank-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.btn-primary {
    background-color: #00d084;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #00b870;
}

/* Policy Pages */
.policy-page {
    background-color: white;
    padding: 2rem;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-container h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.date {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.policy-container section {
    margin-bottom: 2.5rem;
}

.policy-container h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
}

.policy-container p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.policy-container ul,
.policy-container ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-container li {
    margin: 0.5rem 0;
    line-height: 1.7;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
        padding: 1.5rem;
    }

    .hero-text {
        padding: 1.5rem;
    }

    .who-we-are h2,
    .services h2,
    .why-choose h2,
    .testimonials h2 {
        font-size: 2rem;
    }

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

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

    .btn-submit {
        float: none;
        width: 100%;
    }

    .thank-container h1 {
        font-size: 2rem;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        padding: 2rem 1rem;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.5rem;
        padding: 1.2rem;
    }

    .who-we-are,
    .services,
    .why-choose,
    .testimonials {
        padding: 3rem 1rem;
    }

    .policy-container {
        padding: 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
    }
}