.tcs-wrapper-d0404102 {
    background-color: #FFFFFF;
    width: 100%;
    overflow: hidden;
}
.tcs-container-d0404102 {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    gap: 60px;
}
.tcs-left-d0404102 {
    flex: 0 0 calc(40% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.tcs-right-d0404102 {
    flex: 0 0 calc(60% - 30px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Left Content Styles */
.tcs-eyebrow-d0404102 {
    color: #C8A15A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.tcs-heading-d0404102 {
    font-family: 'Playfair Display', serif;
    color: #0F2341;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
}
.tcs-desc-d0404102 {
    color: #555555;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 40px 0;
}
.tcs-btn-d0404102 {
    display: inline-block;
    background-color: #C8A15A;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}
.tcs-btn-d0404102:hover {
    background-color: #0F2341;
    color: #FFFFFF;
}

/* Card Styles */
.tcs-card-d0404102 {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    
    /* Animation default state */
    opacity: 0;
    transform: translateY(30px);
}
/* When intersected */
.tcs-card-d0404102.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tcs-card-d0404102:hover {
    border-left-color: #C8A15A;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px) !important;
}

.tcs-card-icon-d0404102 {
    width: 60px;
    height: 60px;
    background-color: #0F2341;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.tcs-card-icon-d0404102 i {
    color: #FFFFFF;
    font-size: 24px;
}
.tcs-card-icon-d0404102 svg {
    fill: #FFFFFF;
    width: 24px;
    height: 24px;
}

.tcs-card-content-d0404102 {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tcs-card-title-d0404102 {
    color: #0F2341;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.tcs-card-desc-d0404102 {
    color: #666666;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .tcs-heading-d0404102 {
        font-size: 40px;
    }
    .tcs-container-d0404102 {
        gap: 40px;
        padding: 80px 20px;
    }
    .tcs-left-d0404102 {
        flex: 0 0 calc(40% - 20px);
    }
    .tcs-right-d0404102 {
        flex: 0 0 calc(60% - 20px);
    }
}
@media (max-width: 767px) {
    .tcs-container-d0404102 {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }
    .tcs-left-d0404102, .tcs-right-d0404102 {
        flex: 1 1 auto;
        width: 100%;
    }
    .tcs-heading-d0404102 {
        font-size: 32px;
    }
    .tcs-left-d0404102 {
        align-items: center;
        text-align: center;
    }
    .tcs-card-d0404102 {
        width: 100%;
    }
}
