/**
 * ITAR Compliance Training - About Us Page Styles
 */

:root {
    --primary-color: #003366;
    --secondary-color: #0066b2;
    --accent-color: #cc0000;
    --success-color: #4CAF50;
    --light-bg: #f5f7fa;
    --dark-text: #333333;
    --border-radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.header-nav {
    display: flex;
    gap: 25px;
}

.header-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
    padding: 5px 0;
}

.header-nav a:hover,
.header-nav a.active {
    opacity: 0.8;
    border-bottom: 2px solid var(--accent-color);
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.offer-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.offer-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.offer-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.offer-card p {
    color: #666;
    line-height: 1.7;
}

/* Instructor Section */
.instructor-section {
    padding: 80px 0;
    background: white;
}

.instructor-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.instructor-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.instructor-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.instructor-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.instructor-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.instructor-bio p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.instructor-credentials {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.instructor-credentials h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.instructor-credentials ul {
    list-style: none;
}

.instructor-credentials li {
    padding: 8px 0;
    color: #666;
}

.instructor-credentials i {
    color: var(--success-color);
    margin-right: 10px;
}

.instructor-quote {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-top: 30px;
}

.instructor-quote i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.instructor-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.instructor-quote cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-choose-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #a30000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-bg);
}

/* Footer */
.page-footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.page-footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.page-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .mission-content {
        grid-template-columns: 1fr;
    }

    .offer-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructor-profile {
        grid-template-columns: 1fr;
    }

    .instructor-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .offer-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}