/* General Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fbfb;
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background: #1a3a3a; /* Deep "Paradise" Green/Blue */
    color: #fff;
    padding: 1.5rem 0;
    border-bottom: 4px solid #2ecc71; /* Accent green */
}

header h1 {
    float: left;
    font-size: 1.8rem;
}

nav {
    float: right;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #2ecc71;
}

/* Hero Section */
#hero {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* Features/Grid Section */
#features {
    display: flex;
    gap: 20px;
    padding: 40px 0;
}

.feature {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #1a3a3a;
}

/* Footer */
footer {
    background: #1a3a3a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 50px;
}

/* Clearfix for Floats */
header::after {
    content: "";
    display: table;
    clear: both;
}
