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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

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

header {
    background: #1a3c34;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 a {
    color: white;
    text-decoration: none;
    font-size: 28px;
}

nav ul {
    float: right;
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

nav a:hover {
    color: #f4a261;
}

.hero {
    position: relative;
    text-align: center;
}

.hero-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #f4a261;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
}

.btn:hover {
    background: #e76f51;
}

.categories {
    padding: 60px 0;
}

.categories .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    flex: 1;
    min-width: 300px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.card h3 {
    color: #1a3c34;
    margin-bottom: 10px;
}

.link {
    color: #f4a261;
    text-decoration: none;
    font-weight: 700;
}

.link:hover {
    color: #e76f51;
}

.why-us, .content {
    padding: 60px 0;
    text-align: center;
}

.why-us h2, .content h2 {
    font-size: 32px;
    color: #1a3c34;
    margin-bottom: 20px;
}

.page-img {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    border-radius: 10px;
}

form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form textarea {
    height: 150px;
}

.success {
    color: #1a3c34;
    text-align: center;
    margin-top: 20px;
}

footer {
    background: #1a3c34;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: #f4a261;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav ul {
        float: none;
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }
    .hero-slide img {
        height: 300px;
    }
    .hero-content h2 {
        font-size: 24px;
    }
    .hero-content p {
        font-size: 16px;
    }
}