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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

header {
    background: #f5f5f0;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}



.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #8b6f47;
}





.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

.about-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.intro h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #8b6f47;
}

.intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 300;
    color: #8b6f47;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 10px #535353;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #8b6f47;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #8b6f47;
}

.story-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.8;
}

.story-image {
    position: relative;
    height: 500px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.mission-box,
.vision-box {
    background: #f5f5f0;
    padding: 35px;
    border-left: 3px solid #8b6f47;
}

.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #8b6f47;
}

.mission-box p,
.vision-box p {
    color: #666;
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #878787;
    color: #000000;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 600;
    /* margin-bottom: 20px; */
    font-style: italic;
    font-family: serif;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    /* opacity: 0.9; */
    font-weight: 500;
    font-family: monospace;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgb(0, 0, 0);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 10px;
}

.cta-button:hover {
    background: #8b6f47;
    color: white;
}



@media (max-width: 768px) {
    .story-section {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}