﻿body {
    background-color: black;
}


.about-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: black;
    opacity: 0.7;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/aviation-hero.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.about-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .about-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.card-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.about-card h2 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 80px 0;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
}

/* CTA Section */
.cta-section {
    background-color: #0066cc;
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

.cta-button {
    display: inline-block;
    background-color: white;
    color: #0066cc;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #f8f8f8;
        transform: scale(1.05);
    }

.owner-section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.owner-image {
    flex: 1;
    min-width: 300px;
}

.owner-photo {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.owner-bio {
    flex: 2;
}

    .owner-bio h2 {
        color: white;
        font-size: 2rem;
        margin-bottom: 5px;
        
    }

    .owner-bio h3 {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .owner-bio p {
        margin-bottom: 15px;
        line-height: 1.7;
        color: white;
    }

.owner-signature {
    margin-top: 30px;
    color: white;
}

    .owner-signature img {
        height: 50px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .owner-section {
        flex-direction: column;
    }

    .owner-image {
        min-width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .owner-section {
        padding: 30px 20px;
    }

    .owner-bio h2 {
        font-size: 1.8rem;
    }
}
