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

body {
    font-family: "Inter", sans-serif;
    background: #f6f8f7;
    color: #2b2b2b;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    border-bottom: 3px solid #2e7d32;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #2e7d32;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #2e7d32;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff8c00;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}

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

.content {
    max-width: 900px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

.content h2 {
    color: #ff8c00;
    font-size: 32px;
    margin-bottom: 20px;
}

.content p {
    font-size: 17px;
    color: #555;
}

.content img {
    width: 180px;
    margin-top: 25px;
    transition: 0.3s;
}

.content img:hover {
    transform: scale(1.05);
}

.about {
    background: #ffffff;
    padding: 90px 20px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: #ff8c00;
    font-size: 34px;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-image {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.about-image img {
    width: 260px;
    transition: 0.3s;
}

.about-image img:hover {
    transform: rotate(2deg) scale(1.05);
}

footer {
    text-align: center;
    padding: 25px;
    background: #2e7d32;
    color: white;
    margin-top: 50px;
}