/**
 * Our Achievements Section Styles
 */

.achievements-section {
    width: 100%;
    height: 100%;
    padding: 80px;
    background: var(--color-grey-98, #F9FAFB);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.achievements-container {
    width: 100%;
    max-width: 1280px;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 64px;
    margin: 0 auto;
}

/* Achievements Header */
.achievements-header {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.achievements-title-wrapper {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievements-dot {
    width: 8px;
    height: 8px;
    background: var(--color-orange-50, #FF9800);
    border-radius: 9999px;
}

.achievements-subtitle-wrapper {
    padding-left: 8px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.achievements-subtitle {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.achievements-subtitle-text {
    text-align: center;
    color: var(--color-orange-44, #D97706);
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.80px;
    word-wrap: break-word;
}

.achievements-dot-end {
    width: 16px;
    height: 8px;
    padding-left: 8px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.achievements-title {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.achievements-title h2 {
    align-self: stretch;
    text-align: center;
    display: inline-block;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
}

.achievements-title-blue {
    color: #152FBF;
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 48px;
    display: inline;
}

.achievements-title-yellow {
    color: var(--color-yellow-53, #FFCD11);
    font-size: 48px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 48px;
    display: inline;
}

/* Achievements Grid */
.achievements-grid {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.achievement-card {
    flex: 1 1 0;
    min-width: 250px;
    align-self: stretch;
    background: var(--color-white-solid, white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.achievement-content {
    align-self: stretch;
    height: 196px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
}

.achievement-icon {
    width: 100%;
    text-align: center;
    color: #152FBF;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 16px;
}

.achievement-number {
    width: 100%;
    text-align: center;
    color: var(--color-yellow-53, #FFCD11);
    font-size: 36px;
    font-family: Inter, sans-serif;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 8px;
}

.achievement-label {
    width: 100%;
    text-align: center;
    color: var(--color-azure-27, #374151);
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 20px;
}

/* Font Awesome Icons */
.achievement-icon i {
    font-size: 48px;
    color: #152FBF;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .achievements-section {
        padding: 60px 40px;
    }
    
    .achievements-grid {
        flex-wrap: wrap;
    }
    
    .achievement-card {
        flex: 1 1 calc(50% - 16px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 40px 20px;
    }
    
    .achievements-grid {
        flex-direction: column;
    }
    
    .achievement-card {
        width: 100%;
    }
    
    .achievements-title-blue,
    .achievements-title-yellow {
        font-size: 36px;
        line-height: 40px;
    }
}
