.contact-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 72px;
    position: relative;
}

.contact-section-project {
    display: flex;
    max-width: 976px;
    width: 100%;
    padding: 128px 24px 160px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
    margin: 0 auto;
}

.contact-title {
    color: var(--white);
    text-align: left;
    width: 100%;
}

.contact-title-project {
    color: var(--blue-gray-900);
    text-align: left;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
    flex: 1;
    flex-wrap: wrap;
    width: 100%;
}

@media screen and (max-width: 601px) {
    .contact-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-ctt {
        min-width: 0;
        flex: none;
    }
}

.contact-ctt {
    display: flex;
    flex: 1;
    background: linear-gradient(90deg, rgba(230, 230, 230, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 8px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.contact-ctt-project {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(90deg, rgba(25, 118, 210, 0.90) 0%, rgba(30, 136, 229, 0.90) 100%);
}

.contact-ctt-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    width: 100%;
    min-width: 200px;
    height: auto;
}

.contact-ctt-header {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.contact-ctt-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-ctt-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--white);
}

.contact-ctt-title {
    text-align: left;
}

.contact-ctt-info {
    text-align: left;
    min-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}
