* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #fafafa;
    color: #2c1810;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #2c1810;
    color: #fafafa;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: #d4af37;
    font-style: italic;
}

.nav {
    background: linear-gradient(to bottom, #f0e6d2, #f5efe0);
    padding: 1.2rem 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-pillar {
    font-size: 1.8rem;
    color: #d4af37;
    opacity: 0.6;
    margin: 0 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-pillar.left {
    margin-right: 3rem;
}

.nav-pillar.right {
    margin-left: 3rem;
}

.nav a {
    color: #2c1810;
    text-decoration: none;
    margin: 0 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b38f2e);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #2c1810;
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: #2c1810;
}

.nav a.active::after {
    width: 100%;
}

.main-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
    
}

.welcome-text {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    padding: 0 1rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature-card h2 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    display: inline-block;
    background-color: #d4af37;
    color: #2c1810;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.learn-more:hover {
    background-color: #c19b2e;
}

.hero-section {
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)),
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background-color: #d4af37;
    color: #2c1810;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

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

.footer {
    background-color: #2c1810;
    color: #fafafa;
    text-align: center;
    padding: 1.5rem 0;
    width: 100%;
    margin-top: auto;
}

.disclaimer {
    font-size: 0.8rem;
    color: #d4af37;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Add these media queries at the end of the file */
@media screen and (max-width: 768px) {
    .header {
        padding: 2.5rem 1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .nav {
        padding: 1rem 0;
    }

    .nav a {
        margin: 0 1rem;
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem 0;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .hero-section {
        padding: 3rem 1rem;
        margin: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 2rem 1rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .nav a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
} 