/* About Us Page Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #4a7c59;
}

.about-header h2 {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.about-title {
    font-size: 3rem;
    color: #4a7c59;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content {
    color: #222;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #222;
}

.about-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
}

.about-content a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: #2d5a3d;
    text-decoration: underline;
}

.about-values {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 15px;
    border-left: 4px solid #4a7c59;
}

.about-values h3 {
    color: #2d5a3d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #222;
    font-weight: 500;
    transition: all 0.3s ease;
}

.values-list li:hover {
    background: rgba(74, 124, 89, 0.1);
    transform: translateX(5px);
}

.about-benefits {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(230, 126, 34, 0.05);
    border-radius: 15px;
    border-left: 4px solid #e67e22;
}

.about-benefits h3 {
    color: #d35400;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-benefits ul {
    list-style: none;
    padding: 0;
}

.about-benefits li {
    padding: 0.75rem 0;
    color: #222;
    line-height: 1.6;
}

.about-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f5f9f6;
    border: 2px solid #4a7c59;
    border-radius: 15px;
    text-align: center;
}

.about-contact p {
    margin-bottom: 0.5rem;
    color: #222;
}

.about-contact a {
    font-size: 1.1rem;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.about-contact a:hover {
    color: #2d5a3d;
    text-decoration: underline;
}

.about-download {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff8f0;
    border: 2px solid #e67e22;
    border-radius: 15px;
    text-align: center;
}

.about-download .download-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.about-sharing {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f5f9f6;
    border-left: 4px solid #4a7c59;
    border-radius: 10px;
    font-style: italic;
    color: #444;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-content {
        font-size: 1rem;
    }

    .values-list {
        grid-template-columns: 1fr;
    }
}

