body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #1c1c1c;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ff4500;
}

.logo-container img {
    height: 50px;
}

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

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(45deg, #ff6a00, #ff4500);
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #ff4500;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px;
}

.feature {
    text-align: center;
    width: 30%;
}

.feature img {
    width: 80px;
    height: 80px;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}

.plan {
    background: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.plan h3 {
    color: #ff6a00;
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 auto;
}

input, textarea, button {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

button {
    background: #ff4500;
    color: #fff;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background: #1c1c1c;
}
