/* ======================
   About Page
   ====================== */
.about-page {
    padding: 60px 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero .tagline {
    color: #fff;
    width: 100%;
    margin: 40px auto;
    text-align: center;
}

.about-hero h1 {
    color: var(--secondary);
    width: 100%;
    margin: 40px auto;
    font-size: 4rem;
    text-align: center;
}

.about-hero .tagline {
    font-size: 1.4rem;
}

.about-section {
    margin: 60px 0;
}

.about-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #1a1a1a;
    border-left: 5px solid var(--accent);
    border-radius: 10px;
}

.about-card h2 {
    font-size: 3rem;
	font-weight: 700;
	text-align: center;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 0;
    border-radius: 6px;
}

.about-cta {
    text-align: center;
    margin-top: 80px;
}

.about-cta .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.about-cta .cta-button:hover {
    background: var(--accent-hover);
}