.tabs-wrapper {
    max-width: 1300px;
    width: 90%;
    margin: 20px auto;
}

.tabs-container {
    max-width: 1300px;
    width: 100%;
    background: #fafafa;
    /* border-radius: 20px 20px 0 0; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: visible;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14), 0 0 2px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 40px 40px;
}
.tabs-header {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    border-radius: 20px 20px 0 0;
}
.tabs-footer {
    display: flex;
    background: rgba(240, 244, 255, 0.8);
    border-top: 1px solid rgba(200, 200, 255, 0.3);
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 15px 40px;
    gap: 4px;
    justify-content: space-between;
    z-index: 10;
    border-radius: 0 0 20px 20px;
}

.tab-button {
    flex: 0 1 33%;
    /* max-width: 250px; */
    padding: 31px 0px;
    background: #ebefff;
    border: none;
    border-radius: 20px 20px 0 0;
    font-size: 19px;
    font-weight: 400;
    color: #3e45c9;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: #fafafa 0 8px 0, rgba(0, 0, 0, 0.14) 0 0 8px;
    z-index: 9;
}
.tab-button:not(:last-child) {
    margin-right: 16px;
}
.tab-button.active {
    background: #fafafa;
    color: #3e45c9;
}

.tab-icon {
    font-size: 18px;
    margin-right: 10px;
}
.tab-icon img {
    width: 25px;
}

/* Update icons to match Microsoft style */
.icon-organizations::before {
    content: "🏢";
}
.icon-home::before {
    content: "🏠";
}
.icon-education::before {
    content: "🎓";
}

.tab-indicator {
    display: none;
}

.tab-background {
    display: none;
}

.tab-content {
    padding: 100px 40px 100px 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.tab-panel {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.content-header {
    text-align: center;
    /* max-width: 700px; */
    margin: 0 auto;
}
.content-header h2 {
    font-size: 29px;
    line-height: 34px;
    margin: 0 auto 16px;
    max-width: 700px;
}
.content-header p {
    font-size: 16px;
    line-height: 24px;
    color: #5c5c5c;
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}
.content-header img {
    width: 100%;
}
.content-grid {
    margin: 20px auto 0;
    display: flex;
    flex-direction: row-reverse;
    /* grid-template-columns: 0.8fr 1.2fr; */
    /* gap: 40px; */
    align-items: center;
    width: calc(40px + 340px + 508px);
    height: 450px;
}
.content-grid:nth-of-type(2n) {
    flex-direction: row;
}
.content-text {
    flex: 0 1 40%;
    width: calc(50% / 6 * 10 - 24px);
    margin: auto;
}
.content-text h2 {
    font-size: 29px;
    line-height: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #242424;
    padding-bottom: 20px;
}

.content-text p {
    font-size: 16px;
    color: #5c5c5c;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    color: #374151;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.feature-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
}

.content-visual {
    flex: 0 1 60%;
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.content-visual img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.content-footer {
    padding: 88px 25px 112px;
    text-align: center;
}
.content-footer h3 {
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 400;
}
.content-footer h3 span {
    background: var(
        --Gradient-1,
        linear-gradient(96deg, #d83b01 1.08%, #8f5ad4 35.97%, #0860c7 101%)
    );
    -moz-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content-footer p {
    max-width: 700px;
    margin: 0 auto;
    color: #5c5c5c;
    font-weight: 400;
    margin-bottom: 100px;
}
.content-footer img {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.placeholder-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
.footer-tabs {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-tabs button {
    font-size: 18px;
    line-height: 48px;
    background-color: #f5f5f5;
    border-radius: 40px;
    width: 223px;
    outline: none;
    border: none;
    color: #242424;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-tabs button:not(:last-child) {
    margin-right: 20px;
}
.tab-footer-button.active {
    background-color: #464feb;
    color: #fff;
}
.tab-footer-button span {
    display: flex;
    place-content: center;
}
.tab-footer-button.active svg {
    fill: #fafafa;
}
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .tab-content {
        padding: 120px 20px 120px 20px;
    }

    .tab-button,
    .tab-footer-button {
        padding: 12px 16px;
        font-size: 14px;
        max-width: 180px;
    }

    .tabs-header,
    .tabs-footer {
        gap: 2px;
    }
}
@media (max-width: 1100px) {
    .content-grid {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .content-grid:nth-of-type(2n) {
        flex-direction: column;
    }
    .content-text {
        max-width: 400px;
    }
    .content-visual {
        max-width: 512px;
        width: 100%;
        height: auto;
    }
    .content-visual img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .content-header h2 {
        font-size: 24px;
    }
    .content-text h2 {
        font-size: 29px;
    }
    .footer-tabs {
        flex-direction: column;
    }
    .footer-tabs button:not(:last-child) {
        margin-right: 0;
    }
    .footer-tabs button {
        max-width: 302px;
        width: 100%;
        margin-bottom: 12px;
        line-height: 30px;
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .content-header h2 {
        line-height: 30px;
    }
    .content-header p {
        font-size: 14px;
    }
    .content-text h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .content-text p {
        font-size: 14px;
    }
    .tab-icon {
        display: none;
    }
    .tab-button {
        font-size: 10px;
        padding: 9px 0;
    }
    .tab-button:not(:last-child) {
        margin-right: 0;
    }
    .tab-content {
        padding: 50px 15px;
    }
}
@media (max-width: 999px) {
    .navleft {
        display: none;
    }
}
