@import url('../typography-responsive.css');

:root {
            --yellow: #ffbd59;
            --red: #ff3131;
            --white: #fffef8;
            --black: #080517;
            --font-display: 'Archivo Black', sans-serif;
            --font-body: 'Archivo', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--black);
            color: var(--white);
            line-height: 1.8;
        }

        .about-header {
            background: linear-gradient(135deg, #080517 0%, #1a0f35 100%);
            border-bottom: 4px solid var(--yellow);
            padding: 4rem 0;
            text-align: center;
        }

        .about-header h1 {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--yellow);
            margin-bottom: 1rem;
        }

        .about-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .about-section {
            margin-bottom: 4rem;
            padding-bottom: 3rem;
            border-bottom: 2px solid rgba(255, 189, 89, 0.2);
        }

        .about-section:last-child {
            border-bottom: none;
        }

        .about-section h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--yellow);
            margin-bottom: 1.5rem;
        }

        .about-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .value-item {
            background: rgba(255, 189, 89, 0.05);
            border-left: 4px solid var(--yellow);
            padding: 1.5rem;
            border-radius: 4px;
        }

        .value-item h3 {
            color: var(--yellow);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .value-item p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 189, 89, 0.2);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
        }

        .team-member-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .team-member h3 {
            color: var(--yellow);
            margin-bottom: 0.5rem;
        }

        .team-member-role {
            color: var(--red);
            font-weight: 600;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }

        .team-member p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .timeline {
            margin: 2rem 0;
        }

        .timeline-item {
            padding: 1.5rem 0 1.5rem 2rem;
            border-left: 3px solid var(--yellow);
            position: relative;
        }

        .timeline-item::before {
            content: '';
            width: 12px;
            height: 12px;
            background: var(--yellow);
            border-radius: 50%;
            position: absolute;
            left: -8px;
            top: 1.5rem;
        }

        .timeline-item h3 {
            color: var(--yellow);
            margin-bottom: 0.5rem;
        }

        .timeline-item p {
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-about {
            background: rgba(255, 189, 89, 0.1);
            border: 2px solid var(--yellow);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 3rem;
        }

        .cta-about h3 {
            color: var(--yellow);
            margin-bottom: 1rem;
        }

        .cta-about a {
            display: inline-block;
            padding: 0.75rem 2rem;
            background-color: var(--yellow);
            color: var(--black);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .cta-about a:hover {
            background-color: var(--white);
            transform: translateY(-2px);
        }

        .footer {
            background-color: rgba(0, 0, 0, 0.5);
            border-top: 4px solid var(--yellow);
            padding: 3rem 0;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links {
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            display: inline-block;
            margin: 0 1rem;
            color: var(--yellow);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .breadcrumb {
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--yellow);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .about-header h1 {
                font-size: 2rem;
            }

            .about-section h2 {
                font-size: 1.5rem;
            }

            .about-container {
                padding: 2rem 1rem;
            }
        }
