/* styles.css */

/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Bar */
nav {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6347;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 36px;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-item {
    width: 30%;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
    font-size: 36px;
}

.pricing-tiers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pricing-tier {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.pricing-tier h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-tier p {
    font-size: 20px;
    margin-bottom: 20px;
}

.pricing-tier ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-tier ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Sign Up Section */
.signup {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.signup h2 {
    margin-bottom: 40px;
    font-size: 36px;
}

.signup-form {
    display: inline-block;
}

.signup-form input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    width: 300px;
}

.signup-form button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #ff6347;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
