.hair-transplant-types-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.types-header {
    text-align: center;
    margin-bottom: 50px;
}

.types-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.types-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

/* Tabs Navigation */
.types-tabs-nav {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 3px solid #e0e0e0;
    flex-wrap: wrap;
    background: transparent !important;
    justify-content: center;
}

.types-tab-button {
    padding: 18px 30px;
    background: transparent !important;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.types-tab-button:hover {
    color: #333;
    background: transparent !important;
    background-color: transparent !important;
}

.types-tab-button.active {
    color: #333;
    border-bottom-color: #333;
    background: transparent !important;
    background-color: transparent !important;
}

.types-tab-button:focus {
    outline: none;
    background: transparent !important;
    background-color: transparent !important;
}

/* Tab Content */
.types-tabs-content {
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0;
    overflow: hidden;
}

.types-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in;
    background: transparent !important;
    background-color: transparent !important;
}

.types-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.types-content-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    padding: 50px 0;
    align-items: start;
    background: transparent !important;
    background-color: transparent !important;
}

@media (max-width: 1024px) {
    .types-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
}

.types-image-container {
    background: transparent !important;
}

.types-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.types-text-content {
    padding: 10px 0;
    background: transparent !important;
    background-color: transparent !important;
}

.types-content-title {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.types-content-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Info Boxes - ALIGNED IN SAME ROW */
.types-info-boxes {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.info-box {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 6px;
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-box-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 3px;
    white-space: nowrap;
}

.info-box-value {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 700;
    white-space: nowrap;
}

/* Features List - REDUCED SPACING */
.types-features-list {
    list-style: none;
    margin-bottom: 20px;
}

.types-features-list li {
    padding: 5px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
    line-height: 1.4;
    font-size: 0.95rem;
}

.types-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Button */
.types-cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: #333;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.types-cta-button:hover {
    background: #0096b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .types-title {
        font-size: 2rem;
    }

    .types-tab-button {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .types-content-title {
        font-size: 1.6rem;
    }

    .types-content-description {
        font-size: 0.95rem;
    }

    .types-info-boxes {
        flex-direction: column;
    }

    .info-box {
        min-width: 100%;
    }
}