
/* =========================
   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 SECTION
========================= */
.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 {
    padding-bottom: 64px;
}

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


/* =========================
   FEATURES SECTION
========================= */
.features {
    padding-bottom: 64px;
}

.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: 0px;
    padding: 24px;
}

.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;
}

