/* About Page Styles */
.about-page {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.about-header .subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.about-section {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section h2 i {
    color: #3498db;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    flex-direction: row-reverse;
}

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

.value-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #3498db;
}

.team-member h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.team-member p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.about-cta {
    text-align: center;
    padding: 50px 20px;
    background: #f1f9ff;
    border-radius: 8px;
    margin-top: 50px;
}

.about-cta h2 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-cta p {
    margin-bottom: 25px;
    color: #7f8c8d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }
    
    .story-section {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 20px;
    }
}

/* About Section in Sidebar */
.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.sidebar-section .sidebar-link {
    display: block;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.sidebar-section .sidebar-link:hover {
    background-color: rgba(42, 91, 215, 0.1);
    color: var(--primary);
}

/* Adjust logout button spacing */
.logout-btn {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--danger);
    font-weight: 500;
    transition: var(--transition);
    border-radius: 4px;
}

.logout-btn:hover {
    background-color: rgba(229, 62, 62, 0.1);
}