:root {
    --primary-blue: rgb(135, 207, 235);
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

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

body {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    gap: 0;
}

.logo-feel {
    font-family: 'Avenir-Light', 'Avenir', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
}

.logo-well {
    font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a.active {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-feel {
    font-family: 'Avenir-Light', 'Avenir', sans-serif;
    font-weight: 300;
}

.hero-well {
    font-family: 'Avenir-Heavy', 'Avenir', sans-serif;
    font-weight: 800;
    color: var(--primary-blue);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.hero-description {
    max-width: 800px;
    margin: 2rem auto 0;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.feature-list {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
    padding-left: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 2rem 5%;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}