 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.section-one {
    background: #0f6b68;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

section-one .container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

section-one .container p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* What Are Section */
.what-are-section {
    padding: 80px 20px;
    background: #fff;
}

.what-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.what-are-text h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.what-are-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-box {
    background: #f0f9f8;
    border-left: 4px solid #0f6b68;
    padding: 20px;
    margin-top: 25px;
}

    .highlight-box p {
        margin: 0;
        color: #0f6b68;
        font-weight: 500;
    }

.implant-image {
    text-align: center;
}

    .implant-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: #f8fafb;
}

    .why-choose-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 60px;
        color: #1a1a1a;
        font-weight: 700;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #0f6b68;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Procedure Section */
.procedure-section {
    padding: 80px 20px;
    background: white;
}

    .procedure-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        color: #1a1a1a;
        font-weight: 700;
    }

.procedure-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.procedure-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 3px 7px 0px #0000002b;
    border-radius: 15px;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
}

    .step-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.step-content {
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    color: #0f6b6887;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 3.2rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* Types Section */
.types-section {
    padding: 80px 20px;
    background: #0f6b68;
    color: white;
}

.types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.types-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.type-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

    .type-item:last-child {
        border-bottom: none;
    }

    .type-item h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .type-item p {
        color: rgba(255,255,255,0.9);
        font-size: 0.95rem;
        line-height: 1.6;
    }

 

.teeth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.tooth-icon {
    font-size: 2.5rem;
    color: #e0e0e0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8fafb;
}

    .faq-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 15px;
        color: #1a1a1a;
        font-weight: 700;
    }

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1a1a1a;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #f8fafb;
    }

.faq-icon {
    font-size: 1.2rem;
    color: #0f6b68;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f6b68 0%, #0d5855 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #0f6b68;
    border-radius: 45px;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;color:#fff
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
    color: #fff
}
.cta-text {
    padding-left: 25px;
}
.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

    .contact-icon i{
        color:#fff
    }
    .contact-item span {
        font-size: 1.1rem;
        color: #fff;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background: #d49a2a;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #c08a1f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: white;
        color: #0f6b68;
    }

.cta-image img {
    width: 100%;
    border-radius: 0px 20px 20px 0px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

    .testimonials-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 15px;
        color: #1a1a1a;
        font-weight: 700;
    }

.testimonials-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8fafb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars {
    color: #d49a2a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-location {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    section-one .container h1 {
        font-size: 2rem;
    }

    .what-are-content,
    .types-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-content {
        padding-left: 0;
        padding-top: 60px;
    }

    .step-number {
        top: 0;
        left: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    section-one {
        padding: 60px 20px;
    }

        section-one .container h1 {
            font-size: 1.75rem;
        }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .what-are-section,
    .why-choose-section,
    .procedure-section,
    .types-section,
    .faq-section,
    .cta-section,
    .testimonials-section {
        padding: 50px 20px;
    }

    .teeth-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-text {
        padding: 25px;
    }
}
 