/* About Page Specific Styles */

/* Hero section for about page */
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2e426c 0%, #0d9488 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-hero-content p {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Main content section */
.about-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border-color: #cbd5e1;
}

.feature-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: normal;
    border-radius: 50%;
    background: #f0fdf9;
    /* Light teal bg */
    font-size: 24px;
    color: #0F8C72;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feature-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-top: 12px;
}

/* Liquidity section */
.liquidity-section {
    background: #f8fafc;
    padding: 60px 0;
}

.liquidity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.liquidity-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .liquidity-grid {
        grid-template-columns: 1fr;
    }
}

.liquidity-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.liquidity-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.benefits-list-grid {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}

@media (max-width: 768px) {
    .benefits-list-grid {
        grid-template-columns: 1fr;
    }
}

.benefits-list-grid li {
    font-size: 15px;
    color: #475569;
    display: flex;
    align-items: flex-start;
}

.benefits-list-grid li::before {
    content: '✓';
    color: #0F8C72;
    font-weight: 700;
    margin-right: 12px;
    margin-top: 2px;
}