/* About Page Specific Styles */
.about-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.about-section .about-card .logo {
    width: min(200px, 100%);
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border: 3px solid var(--primary-green); /* Optional */
    box-shadow: var(--card-shadow); /* Optional */
}
@media (max-width: 480px) {
    .about-section .about-card .logo {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
}
.mission-section {
    margin-bottom: 2rem;
}

.mission-section h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.features-section h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.feature-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: var(--feature-bg);
    border-radius: var(--card-radius);
}

.feature-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-item:nth-child(3) img {
    filter: invert(50%) sepia(70%) saturate(400%) hue-rotate(130deg);
}

.feature-item:nth-child(4) img {
    filter: invert(70%) sepia(50%) saturate(500%) hue-rotate(50deg);
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Developer Section */
.developer-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-color);
}

.developer-section h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.developer-card {
    background: var(--feature-bg);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: var(--card-shadow);
}

.developer-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.developer-img {
    width: 200px;
    height: 110px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid var(--primary-green);
    box-shadow: var(--card-shadow);
}

.developer-info {
    flex: 1;
}

.developer-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.developer-info p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.developer-links {
    display: flex;
    gap: 1.5rem;
}

.developer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.developer-links a:hover {
    background: rgba(46, 125, 50, 0.1);
}

.developer-links img {
    width: 20px;
    height: 20px;
}

/* Footer */
.about-footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--gray-color);
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .developer-profile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .developer-img {
        width: 140px;
        height: 140px;
    }
    
    .developer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .developer-card {
        padding: 1.5rem;
    }
}