/* Home Page Styles */
.home-grid {
    width: 100%;
    margin: -4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.home-content {
    background: rgba(166, 111, 20, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.home-content h2 {
    color: rgba(166, 111, 20, 1);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.home-content h3 {
    color: rgba(166, 111, 20, 0.8);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.home-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.home-features {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.home-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.home-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(166, 111, 20, 1);
}

.home-features li strong {
    color: rgba(166, 111, 20, 0.9);
}

.home-highlight {
    color: rgba(166, 111, 20, 1);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(166, 111, 20, 0.2);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .home-grid {
        width: 100%;
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .home-content {
        padding: 1.5rem;
    }
    
    .home-content h2 {
        font-size: 1.8rem;
    }
    
    .home-content h3 {
        font-size: 1.3rem;
    }
    
    .home-highlight {
        font-size: 1.1rem;
    }
}