body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f7f7f3; /* Off-white, soft background */
    color: #333;
}

.hero {
    /* Placeholder image for initial upload. You can replace the link inside Hostinger later. */
    background: url('https://via.placeholder.com/1200x600/5a6a5e/ffffff?text=Calm+Goa+Nature+Image') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text clarity */
    padding: 30px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.section {
    padding: 80px 5% 40px;
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-size: 2em;
    color: #5a6a5e; /* Muted Green Heading */
    margin-bottom: 0.8em;
    text-align: center;
}

h3 {
    font-size: 1.4em;
    color: #5a6a5e;
    margin-top: 2em;
    border-bottom: 2px solid #5a6a5e;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8d9f8c; /* Lighter Green checkmark */
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #5a6a5e; /* Muted Green Button */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #4a574a;
}

.cta-section {
    background-color: #e5e5e0; /* Light gray section */
    text-align: center;
    padding-bottom: 80px;
}

.waitlist-form input[type="email"],
.waitlist-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.waitlist-form textarea {
    height: 100px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #f7f7f3;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    .section {
        padding: 40px 5% 20px;
    }
}