:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --white: #f7f7f7;
    --gray: #c0c0c0;
    --gold: #d4a017;
    --gradient: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-page {
    padding-top: 3rem;
}

.about-hero {
    position: relative;
    text-align: center;
    padding: 5rem 0 4rem;
    background: var(--gradient);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.back-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--charcoal);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.back-button:hover {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.back-button svg {
    width: 24px;
    height: 24px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 6rem 0;
    background: var(--black);
}

.about-content .container {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
    flex-direction: column;
}

.about-text {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 800px;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    color: var(--white);
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.about-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    transition: opacity 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-image:hover .image-overlay {
    opacity: 0.5;
}

.about-mission, .about-values, .about-cta {
    padding: 6rem 0;
    background: var(--charcoal);
}

.about-mission h2, .about-values h2, .about-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    color: var(--white);
    text-align: center;
    position: relative;
}

.about-mission h2::after, .about-values h2::after, .about-cta h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.about-mission p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-values ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.about-values li {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    position: relative;
    padding-left: 2rem;
}

.about-values li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.about-values li strong {
    color: var(--white);
    font-weight: 700;
}

.about-cta p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.animate__animated {
    opacity: 0;
    transform: translateY(20px);
}

.animate__fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate__fadeInLeft {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate__fadeInRight {
    animation: fadeInRight 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .about-text h2, .about-mission h2, .about-values h2, .about-cta h2 {
        font-size: 2.4rem;
    }

    .about-text p, .about-mission p, .about-values li {
        font-size: 1.1rem;
    }

    .about-content .container {
        gap: 3rem;
    }

    .about-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }

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

    .about-hero .subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        padding: 4rem 0;
    }

    .about-content .container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .about-text h2, .about-mission h2, .about-values h2, .about-cta h2 {
        font-size: 2.2rem;
    }

    .about-text p, .about-mission p, .about-values li {
        font-size: 1rem;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }

    .about-mission, .about-values, .about-cta {
        padding: 4rem 0;
    }
    
    .image-wrapper {
        aspect-ratio: 4 / 5;
    }

    .back-button {
        top: 1.5rem;
        left: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .back-button svg {
        width: 20px;
        height: 20px;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

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

    .about-hero .subtitle {
        font-size: 1rem;
    }

    .about-text h2, .about-mission h2, .about-values h2, .about-cta h2 {
        font-size: 1.8rem;
    }

    .about-text p, .about-mission p, .about-values li {
        font-size: 0.95rem;
    }

    .back-button {
        width: 36px;
        height: 36px;
    }

    .back-button svg {
        width: 18px;
        height: 18px;
    }

    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .about-content {
        padding: 3rem 0;
    }

    .about-mission, .about-values, .about-cta {
        padding: 3rem 0;
    }
    
    .about-content .container {
        gap: 1.5rem;
    }

    .about-image {
        max-width: 90%;
    }

    .image-wrapper {
        aspect-ratio: 3 / 4;
    }
}