/* Header/Logo section */
.logo-section {
    text-align: center;
}

.logo {
    height: 48px;
    width: auto;
}

/* Hero section */
.hero {
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero-highlight {
    color: #8B4513;
}

.hero p {
    font-size: 1rem;
    color: #666;
}

/* Features section */
.features-section {
    /* background: linear-gradient(180deg, #f2f7fa, #ffffff); */
    padding: 4rem 0;
}

.features-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border: 4px solid #e2e2e2;
    border-radius: 50%;
    padding: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-title {
    font-size: 1rem;
    font-weight: 500;
}