/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #faf9f7;
    color: #2d3748;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #faf9f7;
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
}

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

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2d3748;
}

/* Hero Header */
.hero-header {
    padding-top: 120px;
    padding-bottom: 48px;
    text-align: center;
}

.hero-header h1 {
    font-size: 48px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.hero-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Image */
.hero-image {
    padding-bottom: 64px;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Features Section */
.features {
    padding-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-box {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-number {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 16px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    border-top: 1px solid #e5e5e5;
    padding: 32px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .hero-header h1 {
        font-size: 32px;
    }

    .hero-image img {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
