/* About page styles */
.about-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    color: #ccc;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
}

.about-header h1 {
    color: #e6b800;
    margin-bottom: 20px;
}

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

.about-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h2 {
    color: #e6b800;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.about-card i {
    font-size: 2em;
    color: #c17d0e;
    margin-bottom: 15px;
}

.team-section {
    margin-top: 60px;
    text-align: center;
}

.contact-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.contact-info h2 {
    color: #e6b800;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e6b800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-card {
        margin-bottom: 20px;
    }
} 