/* General Body */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
}

/* Header */
header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Navigation */
nav {
    background-color: #34495e;
    text-align: center;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(120deg, #27ae60, #2ecc71);
    color: white;
}

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

.hero p {
    font-size: 18px;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #1e8449;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px;
    background-color: white;
}

.feature-box {
    width: 30%;
    background-color: #ecf0f1;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 15px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .feature-box {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature-box {
        width: 80%;
    }
}
