/* About Page Styles */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #34495E;
    --accent-color: #E67E22;
    --text-color: #2C3E50;
    --background-light: #F5F6F7;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Main Container */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Company Overview */
.company-overview {
    background: var(--white);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 800px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.expertise-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Leadership Section */
.leadership-section {
    background: var(--background-light);
}

.leader-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.leader-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.leader-info {
    padding: 1rem 0;
}

.leader-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.leader-bio {
    line-height: 1.8;
    color: var(--text-color);
}

/* Core Strengths */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.strength-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.strength-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* General Typography */
h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

p {
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .leader-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leader-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .expertise-grid, .strengths-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expertise-card, .leader-profile, .strength-card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-left, .footer-right {
    padding: 2rem;
    background-color: #444;
    border-radius: 4px;
}

.footer-right {
    text-align: left;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-right ul li {
    margin-bottom: 0.5rem;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right ul li a:hover {
    color: #ddd;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}