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

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

/* Header */
.header {

    padding: 15px 0;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-utils {
    display: flex;
    gap: 5px;
}

.util-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    border-radius: 3px;
}

.util-btn:hover {
    background: #f5f5f5;
}

/* Main Wrapper - Two Column Layout */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.content-left {
    flex: 1;
    min-width: 0;
}

.sidebar-right {
    width: 350px;
    position: sticky;
    top: 90px;
    align-self: flex-start;
}

/* Hero Section */
.hero-section {
    margin-bottom: 30px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-left h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #333;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-center {
    display: flex;
    justify-content: center;
}

.before-after-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 100%;
}

.before-after-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 100%;
}

.before-after-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.before-after-item img {
    width: 100%;
    height: auto;
    border: 2px solid #000;
    border-radius: 8px;
    margin-bottom: 10px;
}

.before-after-label {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
    text-align: center;
}

/* Stats Section */
.stats-section {
    margin-bottom: 30px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00a859;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Cost Section */
.cost-section {
    margin-bottom: 30px;
}

.cost-card {
    background: #fff8e1;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cost-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.highlight-orange {
    color: #ff6b35;
}

.cost-content p {
    color: #666;
    margin-bottom: 20px;
}

.cost-btn {
    background: #8b6f47;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cost-btn:hover {
    background: #7a5f3a;
}

.cost-illustration img {
    max-width: 200px;
    height: auto;
}

/* Finance Section */
.finance-section {
    margin-bottom: 30px;
}

.finance-card {
    background: #e8f5e9;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.finance-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2e7d32;
}

.finance-content p {
    color: #555;
    margin-bottom: 20px;
}

.finance-btn {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.finance-btn:hover {
    background: #1b5e20;
}

.finance-illustration img {
    max-width: 200px;
    height: auto;
}

/* Doctors Section */
.doctors-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.doctors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 25px;
}

.doctor-details {
    flex: 1;
}

.doctor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #00a859;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.specialization {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.doctor-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.info-badge.experience {
    background: #f3e5f5;
    color: #7b1fa2;
}

.info-badge.reviews {
    background: #e8f5e9;
    color: #2e7d32;
}

.info-icon {
    width: 18px;
    height: 18px;
}

.book-btn {
    background: #fff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-left: auto;
}

.book-btn:hover {
    background: #d32f2f;
    color: #fff;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Risks Section */
.risks-section {
    margin-bottom: 30px;
}

.risks-box {
    background: #ffebee;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.risks-list {
    list-style: none;
}

.risks-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 1rem;
}

.risks-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 1.5rem;
    line-height: 1;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 30px;
}

.why-choose-box {
    background: #e8f5e9;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 1rem;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-size: 1.5rem;
    line-height: 1;
}

/* Info Section */
.info-section {
    margin-bottom: 30px;
}

.info-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 30px;
}

.faq-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
}

.faq-question:hover {
    color: #00a859;
}

.chevron {
    font-size: 0.8rem;
    color: #999;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 15px;
}

.faq-answer p {
    color: #666;
    margin-bottom: 10px;
}

.faq-answer ul {
    margin-left: 20px;
    color: #666;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Consultation Form Sidebar */
.consultation-form-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 90px;
}

.consultation-form-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #00a859;
}

.phone-input-group {
    display: flex;
    gap: 0;
}

.country-code-box {
    background: #f5f5f5;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-weight: bold;
    color: #333;
}

.phone-input-group input {
    border-radius: 0 8px 8px 0;
    flex: 1;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: #ff6b6b;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ee5a5a;
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 10002;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    margin-right: 30px;
}

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

.modal-content .form-group label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.modal-content .form-group input[type="text"],
.modal-content .form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.modal-content .form-group input[type="text"]:focus,
.modal-content .form-group input[type="tel"]:focus {
    outline: none;
    border-color: #00a859;
}

.modal-content .phone-input-group {
    display: flex;
    gap: 0;
}

.modal-content .country-code-box {
    background: #f5f5f5;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-weight: bold;
    color: #333;
}

.modal-content .phone-input-group input {
    border-radius: 0 8px 8px 0;
    flex: 1;
}

.modal-content .radio-group {
    display: flex;
    gap: 20px;
}

.modal-content .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.modal-content .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.modal-content .submit-btn {
    width: 100%;
    background: #ff6b6b;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
}

.modal-content .submit-btn:hover {
    background: #ee5a5a;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-wrapper {
        flex-direction: column;
    }

    .sidebar-right {
        width: 100%;
        position: relative;
        top: 0;
    }

    .consultation-form-card {
        position: relative;
        top: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-center {
        order: -1;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .doctor-card {
        flex-direction: column;
        text-align: center;
    }

    .book-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .cost-card,
    .finance-card {
        flex-direction: column;
        text-align: center;
    }

    .cost-illustration,
    .finance-illustration {
        margin-top: 20px;
    }
}
