/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* General Body */
body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111;
    color: #fff;
}

.navbar .logo h1 {
    font-size: 24px;
    letter-spacing: 1px;
}

.navbar .nav-links a {
    color: #fff;
    margin: 0 14px;
    text-decoration: none;
    font-size: 16px;
}

.navbar .nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9b2b, rgba(33, 33, 33, 0.7)), url('https://images.unsplash.com/photo-1573512150369-930c4c9e650e');
    background-size: cover;
    background-position: center center;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #FFB400;
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e08d00;
}

/* Section */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #555;
}

/* How It Works Section */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    width: 22%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #555;
}

/* Call to Action Section */
.cta-section {
    background-color: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #FFB400;
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e08d00;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    z-index: 1;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #FFB400;
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e08d00;
}

.logo-img {
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
.logo-img {
    width: 120px;
}
}

@media (max-width: 480px) {
.logo-img {
    width: 80px;
}
}