/* ================================================
   ASSESS SECTION STYLES
   ================================================ */

.assess-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.assess-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.assess-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.assess-left {
    padding-right: 40px;
}

.assess-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.assess-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: justify;
}

.assess-description:last-child {
    margin-bottom: 0;
}

.assess-right {
    padding-left: 40px;
}

.assess-accordion {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.assess-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.assess-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: #f8f8f8;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.assess-button:hover {
    background-color: #e8e8e8;
}

.assess-button.active {
    background-color: #333333;
    color: #ffffff;
}

.assess-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.assess-button.active .assess-icon {
    transform: rotate(45deg);
}

.assess-content-panel {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
}

.assess-content-panel.active {
    max-height: 200px;
    padding: 24px;
}

.assess-content-panel p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 var(--space-md) 0;
}

.assess-learn-more {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #161820;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    margin-top: var(--space-sm);
}

.assess-learn-more:hover {
    color: #273F87;
    border-bottom-color: #273F87;
}

/* Tablet Styles */
@media (max-width: 1023px) and (min-width: 768px) {
    .assess-section {
        padding: 60px 0;
    }
    
    .assess-container {
        padding: 0 30px;
    }
    
    .assess-content {
        gap: 60px;
    }
    
    .assess-left {
        padding-right: 20px;
    }
    
    .assess-right {
        padding-left: 20px;
    }
    
    .assess-title {
        font-size: 40px;
    }
    
    .assess-description {
        font-size: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .assess-section {
        padding: 40px 0;
    }
    
    .assess-container {
        padding: 0 20px;
    }
    
    .assess-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .assess-left,
    .assess-right {
        padding: 0;
    }
    
    .assess-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .assess-description {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .assess-button {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .assess-content-panel.active {
        padding: 20px;
    }
    
    .assess-content-panel p {
        font-size: 13px;
    }
}
