* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }
body { color: #2c3e50; line-height: 1.6; background-color: #fefefe; }
.section-title { text-align: center; font-size: 2.6rem; margin-bottom: 10px; color: #1e392a; font-weight: 800; }
.section-subtitle { text-align: center; color: #687e70; margin-bottom: 50px; font-size: 1.1rem; }
section { padding: 100px 20px; }

/* HERO - ŻYWE TŁO OWOCÓW */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://unsplash.com') no-repeat center center/cover;
    height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; padding: 20px;
}
.hero h1 { font-size: 4.5rem; margin-bottom: 15px; font-weight: 900; text-shadow: 2px 4px 10px rgba(0,0,0,0.3); }
.hero h1 span { color: #a3e12e; }
.hero p { font-size: 1.6rem; margin-bottom: 35px; max-width: 800px; text-shadow: 1px 2px 5px rgba(0,0,0,0.5); }

/* PRZYCISKI */
.btn {
    background: linear-gradient(135deg, #85bb25 0%, #6da11b 100%); color: white; padding: 16px 45px; text-decoration: none;
    font-size: 1.2rem; border-radius: 50px; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(109, 161, 27, 0.4); border: none; cursor: pointer; text-transform: uppercase;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(109, 161, 27, 0.6); }

/* KAFELKI Z GRAFIKĄ */
.info-section { background: linear-gradient(180deg, #f7faf4 0%, #eef5e7 100%); padding: 90px 20px; }
.info-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.info-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 35px rgba(109, 161, 27, 0.06); border: 1px solid rgba(133, 187, 37, 0.15); }
.card-img { height: 180px; background-size: cover; background-position: center; }
.card-content { padding: 30px; text-align: center; }
.card-content h3 { margin-bottom: 12px; font-size: 1.4rem; color: #1e392a; font-weight: 800; }
.card-content p { color: #556b5e; font-size: 1rem; }

/* FAQ */
.faq-section { background: white; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 20px; padding: 20px; border-radius: 16px; background-color: #fcfdfe; border: 1px solid #edf2ef; }
.faq-item h4 { font-size: 1.15rem; color: #1e392a; margin-bottom: 8px; font-weight: 700; }
.faq-item p { color: #60756a; }

/* FORMULARZ CZEKOLADOWO-ZIELONY */
.order-section { background: linear-gradient(135deg, #1e392a 0%, #112218 100%); color: white; }
.order-section .section-title { color: white; }
.order-section .section-subtitle { color: #a4c2b0; }
.order-container { max-width: 750px; margin: 0 auto; background: white; padding: 45px; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); color: #333; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; color: #1e392a; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid #e2ebd9; border-radius: 14px; font-size: 1rem; outline: none; background-color: #fafdf7; }
.form-group input:focus, .form-group textarea:focus { border-color: #85bb25; background-color: white; }
.btn-email { background: linear-gradient(135deg, #ff9800 0%, #e65c00 100%); box-shadow: 0 6px 20px rgba(230, 92, 0, 0.3); width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 12px; }
.svg-icon { width: 24px; height: 24px; fill: currentColor; }
footer { background-color: #0c1610; color: #738c7e; text-align: center; padding: 30px; font-size: 0.9rem; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; } .hero p { font-size: 1.2rem; } .section-title { font-size: 2rem; }
    .order-container { padding: 25px; border-radius: 20px; } section { padding: 60px 15px; }
}
