.grd-cece1fd5-wrapper {
    background-color: #f6f4ee;
    padding: 80px 20px;
    font-family: sans-serif;
    color: #4f5849;
}

.grd-cece1fd5-container {
    max-width: 1180px;
    margin: 0 auto;
}

.grd-cece1fd5-header {
    text-align: left;
    margin-bottom: 40px;
}

.grd-cece1fd5-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #66685f;
    display: block;
    margin-bottom: 8px;
}

.grd-cece1fd5-title {
    font-size: 40px;
    margin: 0 0 16px;
    color: #4f5849;
    font-weight: 600;
}

.grd-cece1fd5-subtitle {
    font-size: 18px;
    color: #66685f;
    margin: 0;
    max-width: 700px;
}

.grd-cece1fd5-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.grd-cece1fd5-card {
    flex: 1;
    background: #fbfaf6;
    border: 1px solid #d8d6cd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    overflow: hidden;
}

.grd-cece1fd5-card-header {
    padding: 32px 32px 0 32px;
    font-size: 24px;
    font-weight: 600;
    background: #fbfaf6;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #4f5849;
}

.grd-cece1fd5-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px; /* Added to prevent shrinking */
    background: #e9e7df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #66685f;
}

/* Ensure SVG inside icon container behaves properly */
.grd-cece1fd5-card-icon svg {
    max-width: 100%;
    max-height: 100%;
}


.grd-cece1fd5-card-body {
    padding: 32px;
}

.grd-cece1fd5-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.grd-cece1fd5-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e9e7df;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.grd-cece1fd5-list li:first-child {
    padding-top: 0;
}

.grd-cece1fd5-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.grd-cece1fd5-list strong {
    color: #66685f;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.grd-cece1fd5-list span {
    color: #4f5849;
    font-size: 16px;
    line-height: 1.5;
}

.grd-cece1fd5-cta {
    background: #4f5849;
    color: #f6f4ee;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.grd-cece1fd5-cta-text {
    font-size: 18px;
    font-weight: 500;
    flex: 1;
    min-width: 250px;
}

.grd-cece1fd5-btn {
    background: #fbfaf6;
    color: #4f5849;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.grd-cece1fd5-btn:hover {
    background: #e9e7df;
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .grd-cece1fd5-cards {
        flex-direction: column;
    }
}

/* Mobile Layout - Accordions */
@media (max-width: 767px) {
    .grd-cece1fd5-wrapper {
        padding: 48px 20px;
    }
    
    .grd-cece1fd5-title {
        font-size: 34px;
    }

    .grd-cece1fd5-cards {
        flex-direction: column;
        gap: 16px;
    }

    .grd-cece1fd5-card-header {
        cursor: pointer;
        position: relative;
        padding: 20px;
        font-size: 20px;
    }
    
    .grd-cece1fd5-card-header::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        font-weight: 300;
        transition: transform 0.3s;
    }

    .grd-cece1fd5-card.active .grd-cece1fd5-card-header::after {
        content: '-';
    }

    .grd-cece1fd5-card-body {
        display: none;
        padding: 0 20px 20px 20px;
    }
    
    .grd-cece1fd5-card.active .grd-cece1fd5-card-body {
        display: block;
    }

    .grd-cece1fd5-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .grd-cece1fd5-btn {
        width: 100%;
    }
}