/* Resetting default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffd700; /* Change color on hover */
}

/* Hero section styles */
.hero {
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #45a049;
}

/* Features section styles */
#features {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.feature {
    margin-bottom: 40px;
}

.feature h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    font-size: 16px;
    color: #666;
}

/* Pricing section styles */
#pricing {
    text-align: center;
    padding: 100px 0;
}

#pricing h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* Contact section styles */
#contact {
    background-color: #333;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

#contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
}

#contact form {
    max-width: 500px;
    margin: 0 auto;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

#contact input[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact input[type="submit"]:hover {
    background-color: #45a049;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        text-align: center;
    }
    .nav-links.active li {
        display: block;
        margin: 10px 0;
    }
    .nav-links.active li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }
}
