/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.8rem;
    color: #095d40;
    margin-bottom: 0.25rem;
}

h2 {
    font-size: 2.5rem;
    color: #095d40;
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.875rem;
    color: #2d3748;
}

h4 {
    font-size: 1.25rem;
    color: #095d40;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #095d40, #0d7c59);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(9, 93, 64, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-brand .crp {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0;
    font-weight: 400;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: #095d40;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #095d40;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #095d40;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #095d40, #0d7c59);
    color: white;
    box-shadow: 0 4px 15px rgba(9, 93, 64, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(9, 93, 64, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #095d40;
    border: 2px solid #095d40;
}

.btn-secondary:hover {
    background: #095d40;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f7fafc 0%, #e6f7f1 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23095d40" stop-opacity="0.05"/><stop offset="100%" stop-color="%23095d40" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #095d40;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #095d40, #0d7c59);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(9, 93, 64, 0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

}

.section-subtitle {
    color: #095d40;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 1000px;
    text-align: left;
    margin: auto;
    line-height: 1.7;
}

/* Quality Section */
.quality-section {
    background: #ffffff;
}

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

.benefit-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #095d40, #0d7c59);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(9, 93, 64, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #095d40, #0d7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 20px rgba(9, 93, 64, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #095d40;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Approach Section */
.approach-section {
    background: linear-gradient(135deg, #f7fafc 0%, #e6f7f1 100%);
}

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

.approach-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(9, 93, 64, 0.15);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #095d40, #0d7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 20px rgba(9, 93, 64, 0.2);
}

.approach-icon i {
    font-size: 2rem;
    color: white;
}

.approach-card h4 {
    font-size: 1.3rem;
    color: #095d40;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    background: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 20px;
    border-left: 5px solid #095d40;
    transition: all 0.3s ease;
}

.step:hover {
    background: #e6f7f1;
    transform: translateX(10px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #095d40;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #095d40, #0d7c59);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(9, 93, 64, 0.3);
}

.step-content h4 {
    font-size: 1.4rem;
    color: #095d40;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f7fafc 0%, #e6f7f1 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.intro-text {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 2rem;
    max-width: 1000px;
    text-align: left;
    margin: auto;
    font-weight: 500;
}

.about-text h4 {
    color: #095d40;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    max-width: 1000px;
    text-align: left;
    font-size: 1.4rem;
}

.highlight-quote {
    background: linear-gradient(135deg, #e6f7f1, #f0fdf4);
    border-left: 5px solid #095d40;
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #2d3748;
    border-radius: 0 15px 15px 0;
    text-align: left;
    box-shadow: 0 5px 15px rgba(9, 93, 64, 0.1);
}

.highlight-quote p {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(9, 93, 64, 0.15);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #095d40, #0d7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 15px rgba(9, 93, 64, 0.2);
}

.testimonial-icon i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #095d40;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f7fafc 0%, #e6f7f1 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question h4 {
    margin: 0;
    color: #095d40;
    font-size: 1.1rem;
}

.faq-question i {
    color: #095d40;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    text-align: center;
}

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

.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #095d40;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border: 2px solid #095d40;
    border-radius: 50px;
}

.social-link:hover {
    background: #095d40;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        text-align: center;
        margin: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .benefits-grid,
    .approach-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        margin-bottom: 1rem;
    }
}

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

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 80px 0;
    }

    .benefit-card,
    .approach-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .image-frame {
        width: 300px;
        height: 400px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .approach-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .approach-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .step {
        padding: 1rem;
    }

    .image-frame {
        width: 250px;
        height: 320px;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
}



/* Benefits Expect Section */
.benefits-expect-container {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefits-expect-container .section-header h2 {
    font-size: 2rem;
    color: #095d40;
    margin-bottom: 30px;
}

.benefits-expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.benefit-expect-card {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
}

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

.benefit-expect-card i {
    color: #095d40;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .benefits-expect-container {
        padding: 30px;
        margin-top: 40px;
    }

    .benefits-expect-container .section-header h2 {
        font-size: 1.8rem;
    }

    .benefits-expect-grid {
        grid-template-columns: 1fr;
    }

    .benefit-expect-card {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .benefit-expect-card i {
        font-size: 1.3rem;
    }
}


