/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar .logo a {
    font-size: 2em;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 1.2em;
    color: #333;
    text-decoration: none;
}

.nav-links li a:hover {
    color: #ff6f61;
}

/* Hero Section */
.hero {
    background-color: #ff6f61;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 700;
}

.sub-heading {
    font-size: 1.8em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background-color: #fff;
    color: #ff6f61;
    padding: 15px 40px;
    font-size: 1.2em;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn:hover {
    background-color: #ff3d2e;
    color: white;
}

/* Services Section */
.section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.section-heading {
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: 600;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.service {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.service p {
    font-size: 1.2em;
    color: #666;
}

.service:hover {
    transform: translateY(-10px);
}

/* How It Works Section */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.step {
    width: 30%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    font-size: 1.2em;
    color: #666;
}

/* Join Us Section */
.join-us {
    background-color: #ff6f61;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.join-us-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.join-us-content p {
    font-size: 1.5em;
    margin-bottom: 40px;
}

#waiting-list-form input {
    padding: 15px;
    width: 70%;
    margin-bottom: 20px;
    font-size: 1.2em;
    border-radius: 5px;
    border: none;
}

#waiting-list-form button {
    padding: 15px 40px;
    font-size: 1.3em;
    background-color: #fff;
    color: #ff6f61;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

#waiting-list-form button:hover {
    background-color: #ff3d2e;
    color: white;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
