body {
    background-color: #FEFCE8; /* Very soft cream background */
    font-family: 'Poppins', sans-serif;
    color: #4A3311;
    margin: 0;
    padding-top: 100px;
}

.spud-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Bento Box Hero Layout */
.hero-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 20px;
    margin-bottom: 80px;
}

.bento-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background-color: #F4C542;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.2);
}

.bento-main h1 {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #4A3311;
}

.bento-main h1 span {
    color: #FFFFFF;
    text-shadow: 2px 2px 0px #4A3311;
}

.bento-main p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 80%;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4A3311;
    color: #F4C542;
}

.btn-primary:hover {
    background-color: #2D1E0A;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #FFF8ED;
    color: #4A3311;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    transform: scale(1.05);
}

.bento-img {
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bento-img-1 { grid-column: 3; grid-row: 1; }
.bento-img-2 { grid-column: 3; grid-row: 2; }

/* Features Section */
.spud-features { text-align: center; margin-bottom: 60px; }
.spud-features h2 { font-size: 2.5rem; margin-bottom: 40px; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.feature-card:hover { transform: translateY(-10px); }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #4A3311; }

/* Responsive tweaks */
@media(max-width: 900px) {
    .hero-bento { display: flex; flex-direction: column; }
    .bento-img { height: 250px; }
}