.tt-966c8336-wrapper {
    font-family: inherit;
    color: #333;
}

.tt-966c8336-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tt-966c8336-tab-title {
    padding: 16px 30px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
    flex: 1;
    border-right: 1px solid #e0e0e0;
}

.tt-966c8336-tab-title:last-child {
    border-right: none;
}

.tt-966c8336-tab-title:hover {
    background: #f9f9f9;
}

.tt-966c8336-tab-title.active {
    background: #eae3f5;
    color: #4a235a;
    font-weight: 600;
}

.tt-966c8336-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tt-966c8336-tab-content.active {
    display: block;
}

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

/* Top Section */
.tt-966c8336-top-section {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

.tt-966c8336-top-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.tt-966c8336-top-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tt-966c8336-top-content {
    flex: 1;
}

.tt-966c8336-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.tt-966c8336-subtitle span {
    width: 12px;
    height: 12px;
    background: #ffc107;
    display: inline-block;
}

.tt-966c8336-heading,
.tt-966c8336-offerings-title {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.2;
}

.tt-966c8336-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tt-966c8336-highlight {
    background: #f8f4ff;
    border: 1px solid #dcd0f0;
    padding: 25px;
    border-radius: 8px;
    color: #4a235a;
    font-size: 15px;
    line-height: 1.6;
}

/* Offerings Section */
.tt-966c8336-offerings-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.tt-966c8336-offerings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.tt-966c8336-btn {
    background: #4a235a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
    display: inline-block;
}

.tt-966c8336-btn:hover {
    background: #31153f;
    color: #fff;
}

.tt-966c8336-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tt-966c8336-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.tt-966c8336-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tt-966c8336-card-body {
    padding: 30px;
}

.tt-966c8336-card-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.tt-966c8336-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .tt-966c8336-top-section {
        flex-direction: column;
    }
    .tt-966c8336-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tt-966c8336-nav {
        flex-direction: column;
        border-radius: 12px;
    }
    .tt-966c8336-tab-title {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    .tt-966c8336-tab-title:last-child {
        border-bottom: none;
    }
    .tt-966c8336-offerings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .tt-966c8336-cards {
        grid-template-columns: 1fr;
    }
}