:root {
    --primary-green: #0abab5;
    --light-blue: #b7e0ea;
    --light-yellow: #f8bf5d;
    --text-dark: #000000;
}

body {
    margin: 0;
}

.hero-banner {
    position: relative;
    background-color: var(--primary-green);
    background-image: url('<?php bloginfo(' template_url'); ?>/image/XFXF7306.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
    min-height: 60vh;
    height: auto;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex-basis: 50%;
    padding-right: 60px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
    max-width: 224px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .hero-container {
        width: 100%;
    }

    .hero-text {
        flex-basis: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 16px;
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 40px 15px;
        min-height: 40vh;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 14px;
    }
}

.mission-banner {
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 0;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
}

.mission-banner p {
    font-size: 2.5rem;
    line-height: 1.5;
    color: #0abab5;
    max-width: 960px;
    margin: 0 auto;
    font-weight: 500;
}

.mission-banner strong {
    font-weight: 800;
}

.mission-banner img {
    display: block;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
    transform: translateY(0px);
}

.brand-story-section {
    display: flex;
    width: 100%;
    background-color: #0abab5;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

.story-image-container {
    width: 50%;
    background-color: #f8bf5d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.story-image-container img {
    max-width: 80%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.story-text-container {
    width: 50%;
    background-color: #0abab5;
    color: #ffffff;
    padding: 0px 60px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.5;
}

.story-content p {
    font-size: 24px;
    line-height: 2;
    margin: 0 0 10px;
}

.story-content p strong {
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 1350px) {
    .story-content h2 {
        font-size: 44px;
    }

    .story-content p {
        font-size: 22px;
    }
}

@media (max-width: 1268px) {
    .story-content h2 {
        font-size: 42px;
    }

    .story-content p {
        font-size: 21px;
    }
}

@media (max-width: 1024px) {
    .story-content h2 {
        font-size: 40px;
    }

    .story-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .brand-story-section {
        flex-direction: column;
    }

    .story-image-container {
        width: 100%;
        height: 300px;
        order: 2;
    }

    .story-text-container {
        width: 100%;
        padding: 60px 30px;
        order: 1;
    }

    .story-content h2 {
        font-size: 32px;
    }

    .story-content p {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .story-text-container {
        padding: 40px 20px;
    }

    .story-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .story-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}


.values-section {
    padding: 2rem;
    max-width: 100%;
    margin: 0;
    text-align: center;
}

