/* About Page Styles */

.about-page {
    font-family: 'Inter', sans-serif;
    color: #333;
}

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

.bg-light {
    background-color: #f9f9f9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #76b900;
    /* Bright Green */
    color: white;
}

.btn-primary:hover {
    background-color: #5a9000;
}

/* Hero Section */
.about-hero {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-desc {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background-color: #76b900;
    /* Green background */
    color: white;
    padding: 2.5rem;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
}

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

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Veteran Section */
.veteran-section {
    padding: 80px 0;
    background-color: white;
}

.veteran-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.veteran-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.veteran-left p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.veteran-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.veteran-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.veteran-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.veteran-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1rem;
}

.veteran-intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.2;
}

.veteran-intro-text .veteran-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.veteran-card {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Serve Section */
.serve-section {
    padding: 80px 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.serve-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.serve-img {
    height: 250px;
    position: relative;
}

.serve-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serve-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.serve-overlay h3 {
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.serve-body {
    background-color: #4a55a2;
    /* Blue/Purple color from image */
    color: white;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.serve-body p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay on the background image */
}

.cta-box {
    background-color: rgba(44, 50, 100, 0.9);
    /* Deep Blue/Purple with opacity */
    color: white;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    /* To sit above the overlay */
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.cta-box p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-box .btn-primary {
    background-color: #76b900;
    border: none;
    font-size: 1rem;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cta-box .btn-primary:hover {
    background-color: #65a000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {

    .mission-grid,
    .veteran-grid,
    .serve-grid {
        grid-template-columns: 1fr;
    }

    .veteran-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .veteran-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

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