* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    margin: 0 !important;
}

.hero-section {
    height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('<?php echo get_template_directory_uri(); ?>/assets/images/about-hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 2s ease-out;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 
        3px 3px 0px #000,
        6px 6px 0px #333;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #ccc;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 300;
}

.main-content {
    background: #fff;
    color: #000;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #f8f8f8;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px #ccc;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: #000;
}

.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    width: 100%;
}

.story-card {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    width: 30%;
    min-width: 0;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #000;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px #000;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

.highlight-text {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.process-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.process-section .section-title {
    color: #fff;
    text-shadow: 2px 2px 0px #333;
}

.process-section .section-title::after {
    background: #fff;
}

.process-section .section-subtitle {
    color: #ccc;
}

.process-timeline {
    max-width: 1000px;
    margin: 60px auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin: 60px 0;
    width: 50%;
    padding: 0 40px;
}

.process-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-item:nth-child(even) {
    left: 50%;
}

.process-content {
    background: #fff;
    color: #000;
    padding: 30px;
    border: 3px solid #fff;
    position: relative;
    transition: all 0.3s ease;
}

.process-content:hover {
    box-shadow: 5px 5px 0px #ccc;
}

.process-icon {
    background: #000;
    color: #fff;
    padding: 15px 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-text {
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.values-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    width: 100%;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 3px solid #000;
    transition: all 0.3s ease;
    width: 30%;
    min-width: 0;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px #000;
}

.event-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border: 3px solid #000;
    margin-bottom: 15px;
    display: block;
}

.value-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.value-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    font-weight: 400;
}

.cta-section {
    background: #000;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px #333;
}

.cta-text {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 20px 50px;
    border: 3px solid #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background: #000;
    color: #fff;
    box-shadow: 5px 5px 0px #ccc;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    animation: bounce 2s infinite;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pattern-bg {
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,0.05) 10px,
            rgba(0,0,0,0.05) 20px
        );
}

.pattern-bg-dark {
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.05) 10px,
            rgba(255,255,255,0.05) 20px
        );
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .story-grid {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }

    .story-card {
        padding: 20px;
        width: 100%;
    }

    .values-grid {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }

    .value-item {
        padding: 20px 15px;
        width: 100%;
    }

    .event-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border: 3px solid #000;
        margin-bottom: 15px;
        display: block;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        text-align: left !important;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    .card-title, .value-title {
        font-size: 1.6rem;
    }

    .card-text, .value-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-card, .value-item {
        padding: 15px;
        width: 100%;
    }

    .event-image {
        height: 120px;
    }
}