* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f4;
}

header {
    background-color: #7A0000;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    color: #f9f7f4;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: #d4af8c;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #f9f7f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af8c;
    background-color: rgba(212, 175, 140, 0.1);
}


main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-header h2 {
    font-size: 3rem;
    color: #7A0000;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.story-section {
    margin: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h3 {
    color: #7A0000;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
}

.values-section {
    background-color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.values-section h3 {
    text-align: center;
    color: #7A0000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f9f7f4;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #7A0000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

footer {
    background-color: #7A0000;
    color: #f9f7f4;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h4 {
    color: #d4af8c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 140, 0.3);
    margin-top: 2rem;
}


@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {}
