.key-ta-section {
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    gap: 50px;
    padding: 44px !important; /* Add thin padding around entire component */
    margin: 32px 0 !important;
    width: 100% !important;
    background: linear-gradient(90deg, rgb(1, 32, 73) 0%,rgba(10, 128, 161, 0.35) 100%) !important;
    border: 1px solid rgb(156, 255, 255);
    border-radius: 24px;
    border: none !important;
    overflow: hidden; /* Added to ensure clean corners */
}

.key-ta-section a {
    color: rgb(241, 255, 255) !important;
}

.key-ta-section a:hover {
    color: rgb(184, 248, 248) !important;
}

.key-ta-section:last-child {
    margin-bottom: 0 !important;
}

.key-ta-section .ta-title-container {
    /* Make it square by setting width and height the same */
    flex: 0 0 auto; /* Don't flex, use fixed size */
    width: 180px; /* Fixed width */
    height: 180px; /* Same as width to create square */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove padding to keep square shape intact */
    text-align: center;
    background: inherit; /* Keep gradient background */
    border-radius: 22px 0 0 22px; /* Add rounded corners to match outer container */
}

.key-ta-section .ta-title {
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 30px !important;
    color: #ffffff !important;
}

.key-ta-section .ta-content {
    flex: 1; /* Take remaining space */
    padding: 32px !important;
    background: inherit; /* Keep gradient background */
    border-radius: 0 22px 22px 0; /* Add rounded corners to match outer container */
}

.key-ta-section .ta-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px !important;
    padding: 0 !important;
}

.key-ta-section .ta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    color: #ffffff;
}

.key-ta-section .ta-item::before {
    content: '';
    display: flex;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    background: url('../img/svg/list-style-icon.svg') center / contain no-repeat;
}

@media (max-width: 1024px) {
    .key-ta-section .ta-title-container,
    .key-ta-section .ta-content {
        padding: 24px !important;
    }
    
    .key-ta-section {
        border-radius: 16px;
    }

    .key-ta-section .ta-item {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .key-ta-section {
        flex-direction: column; /* Stack vertically on mobile */
        border-radius: 8px;
        gap: 1px; /* Smaller gap for mobile */
        padding: 30px !important; /* Smaller padding for mobile */
    }
    
    .key-ta-section .ta-title-container {
        width: 100%; /* Full width on mobile */
        height: auto; /* Auto height on mobile */
        padding: 16px !important; /* Restore padding on mobile */
        justify-content: flex-start;
        border-radius: 7px 7px 0 0; /* Adjust for mobile */
    }
    
    .key-ta-section .ta-content {
        padding: 0 16px 16px 16px !important;
        border-radius: 0 0 7px 7px; /* Adjust for mobile */
    }
}