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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('big_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 20px 60px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.hero .container {
    width: 100%;
}

.hero-content {
    padding-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 20%;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #8b6914;
    color: white;
}

.btn-primary:hover {
    background-color: #6d5110;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #8b6914;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Mission Section */
.mission {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.mission h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #8b6914;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mission-text h3 {
    font-size: 1.8rem;
    color: #8b6914;
    margin-bottom: 25px;
}

.mission-text h4 {
    font-size: 1.2rem;
    color: #a67c1b;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.mission-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #8b6914;
}

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

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: #8b6914;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.contact-details {
    margin-top: 30px;
    padding: 20px;
    background-color: #faf6e8;
    border-radius: 8px;
}

.contact-details h4 {
    color: #8b6914;
    margin-bottom: 15px;
}

.contact-details a {
    color: #a67c1b;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a67c1b;
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #8b6914;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .mission-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
