/* About Us Page Specific Styles */

.about-layout {
    max-width: 800px;
    margin: 0 auto;
}

.about-container {
    background: white;
    padding: 0;
}

.about-section {
    margin-bottom: 50px;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fcf303;
    font-weight: bold;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background: #fcf303;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.inline-link {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #fcf303;
    text-decoration: none;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-layout {
        padding: 0 15px;
    }

    .about-section {
        padding: 30px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}