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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.header {
    position: relative;
    width: 100%;
    height: 120px;
    background-image: url('young_living_header_refined.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.brand-text {
    color: #2c5530;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.nav-link {
    color: #2c5530;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.main-content {
    padding: 50px;
    text-align: center;
}

.hero-section {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 20px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: auto;
        min-height: 100px;
        flex-direction: column;
        gap: 20px;
    }

    .navigation {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 15px;
    }

    .brand-text {
        font-size: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .main-content {
        padding: 30px 20px;
    }
}

