.estudo-contact-section {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 0;
}

.estudo-top-divider {
    width: 100%;
    border-top: 1px solid #333230;
    margin-bottom: 50px;
}

.estudo-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.estudo-contact-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #191010, #212020);
    border-radius: 12px;
    padding: 40px;
    text-decoration: none;
    color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #2a2927;
    height: 100%;
}

.card-header-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00b65e !important;
}

.card-icon-wrap i,
.card-icon-wrap svg,
.card-icon-wrap svg path {
    color: #00b65e !important;
    fill: #00b65e !important;
}

.card-title {
    margin: 0;
    line-height: 1.1;
}

.card-inner-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #333230;
    margin: 0 0 30px 0;
}

.card-body-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-top: auto;
}

.card-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.card-subtext {
    opacity: 0.8;
    line-height: 1.5;
    margin: 10px 0px;
}

.card-value {
    word-break: break-all;
    margin: 10px 0px;
}

.card-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    width: 40px;
    height: 30px;
    border-radius: 4px;
    flex-shrink: 0;
}

.card-arrow-btn svg {
    width: 16px;
    height: 12px;
    display: block;
    stroke: #ffffff;
}

@media (max-width: 768px) {
    .estudo-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .estudo-contact-card {
        padding: 25px;
    }
}