*{margin:0;padding:0;box-sizing:border-box}
:root{--accent:#6B8E23;--accent-dark:#556B2F;--text:#333;--text-light:#666;--bg:#fff;--bg-light:#f8f9fa;--border:#e0e0e0}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;color:var(--text);line-height:1.6;background:var(--bg)}
h1,h2,h3{font-weight:600;line-height:1.3;color:var(--text)}
h1{font-size:2.2rem;margin-bottom:1.5rem}
h2{font-size:1.75rem;margin-bottom:1.25rem}
h3{font-size:1.25rem;margin-bottom:1rem}
p{margin-bottom:1rem;color:var(--text-light)}
a{color:var(--accent);text-decoration:none;transition:color 0.2s}
a:hover{color:var(--accent-dark)}
img{max-width:100%;height:auto;display:block}
.header{position:fixed;top:0;left:0;right:0;background:var(--bg);box-shadow:0 2px 10px rgba(0,0,0,0.08);z-index:1000;padding:0.75rem 0}
.header .navbar-brand{font-size:1.5rem;font-weight:700;color:var(--accent)}
.header .navbar-brand:hover{color:var(--accent-dark)}
.header .nav-link{color:var(--text);font-size:0.9rem;padding:0.5rem 1rem;transition:color 0.2s}
.header .nav-link:hover{color:var(--accent)}
.navbar-toggler{border:none;padding:0.5rem}
.navbar-toggler:focus{box-shadow:none}
.navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236B8E23' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}
main{margin-top:70px}
.section{padding:4rem 0}
.section-alt{background:var(--bg-light)}
.section-title{text-align:center;margin-bottom:3rem}
.section-title h2{position:relative;display:inline-block;padding-bottom:0.75rem}
.section-title h2::after{content:"";position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:60px;height:3px;background:var(--accent)}
.hero{padding:6rem 0 4rem;background:linear-gradient(135deg,var(--bg-light) 0%,var(--bg) 100%)}
.hero h1{font-size:2.5rem;margin-bottom:1rem}
.hero-subtitle{font-size:1.1rem;color:var(--text-light);margin-bottom:2rem}
.hero-image{border-radius:8px;box-shadow:0 10px 30px rgba(0,0,0,0.1)}
.content-card{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:2rem;height:100%;transition:box-shadow 0.2s}
.content-card:hover{box-shadow:0 5px 20px rgba(0,0,0,0.08)}
.content-card h3{color:var(--accent)}
.two-column{display:grid;grid-template-columns:1fr;gap:2rem;align-items:center}
@media(min-width:768px){.two-column{grid-template-columns:1fr 1fr}}
.two-column.reverse .col-text{order:1}
.two-column.reverse .col-image{order:2}
@media(min-width:768px){.two-column.reverse .col-text{order:2}.two-column.reverse .col-image{order:1}}
.content-image{border-radius:8px;box-shadow:0 5px 20px rgba(0,0,0,0.1);max-width:100%;width:350px}
.product-card{background:var(--bg);border:1px solid var(--border);border-radius:8px;overflow:hidden;height:100%;transition:box-shadow 0.2s}
.product-card:hover{box-shadow:0 8px 25px rgba(0,0,0,0.1)}
.product-card img{width:100%;height:200px;object-fit:cover}
.product-card-body{padding:1.5rem}
.product-card h3{font-size:1.1rem;margin-bottom:0.75rem}
.list-styled{list-style:none;padding:0}
.list-styled li{padding:0.75rem 0;padding-left:1.5rem;position:relative;border-bottom:1px solid var(--border)}
.list-styled li:last-child{border-bottom:none}
.list-styled li::before{content:"";position:absolute;left:0;top:1rem;width:8px;height:8px;background:var(--accent);border-radius:50%}
.info-box{background:var(--bg-light);border-left:4px solid var(--accent);padding:1.5rem;border-radius:0 8px 8px 0;margin:1.5rem 0}
.faq-item{border:1px solid var(--border);border-radius:8px;margin-bottom:1rem;overflow:hidden}
.faq-question{background:var(--bg-light);padding:1rem 1.5rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:background 0.2s}
.faq-question:hover{background:#eef1e6}
.faq-question h3{margin:0;font-size:1rem}
.faq-icon{width:20px;height:20px;position:relative;flex-shrink:0}
.faq-icon::before,.faq-icon::after{content:"";position:absolute;background:var(--accent);transition:transform 0.2s}
.faq-icon::before{width:2px;height:100%;left:50%;transform:translateX(-50%)}
.faq-icon::after{width:100%;height:2px;top:50%;transform:translateY(-50%)}
.faq-item.active .faq-icon::before{transform:translateX(-50%) rotate(90deg)}
.faq-answer{padding:0 1.5rem;max-height:0;overflow:hidden;transition:max-height 0.3s,padding 0.3s}
.faq-item.active .faq-answer{padding:1.5rem;max-height:500px}
.btn-accent{background:var(--accent);color:#fff;border:none;padding:0.75rem 2rem;border-radius:6px;font-size:1rem;cursor:pointer;transition:background 0.2s}
.btn-accent:hover{background:var(--accent-dark);color:#fff}
.contact-form{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:2rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:500;color:var(--text)}
.form-group input,.form-group textarea{width:100%;padding:0.75rem 1rem;border:1px solid var(--border);border-radius:6px;font-size:1rem;transition:border-color 0.2s}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--accent)}
.form-group textarea{resize:vertical;min-height:100px}
.footer{background:#2c2c2c;color:#ccc;padding:3rem 0 1.5rem}
.footer h3{color:#fff;font-size:1.1rem;margin-bottom:1rem}
.footer p{color:#aaa;font-size:0.9rem;margin-bottom:0.5rem}
.footer a{color:#aaa;transition:color 0.2s}
.footer a:hover{color:var(--accent)}
.footer-links{list-style:none;padding:0}
.footer-links li{margin-bottom:0.5rem}
.footer-bottom{border-top:1px solid #444;margin-top:2rem;padding-top:1.5rem;text-align:center}
.footer-bottom p{font-size:0.85rem;margin:0}
.educational-notice{background:#f0f4e8;border:1px solid var(--accent);border-radius:8px;padding:1rem 1.5rem;text-align:center;margin:1rem 0}
.educational-notice p{margin:0;font-size:0.9rem;color:var(--text)}
.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:2000;display:none;align-items:center;justify-content:center;padding:1rem}
.modal-overlay.active{display:flex}
.modal-content{background:var(--bg);border-radius:8px;max-width:700px;width:100%;max-height:90vh;overflow-y:auto;position:relative}
.modal-header{padding:1.5rem;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;position:sticky;top:0;background:var(--bg)}
.modal-header h2{margin:0;font-size:1.5rem}
.modal-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--text-light);padding:0;line-height:1}
.modal-close:hover{color:var(--text)}
.modal-body{padding:1.5rem}
.modal-body h3{margin-top:1.5rem;margin-bottom:0.75rem}
.modal-body h3:first-child{margin-top:0}
.modal-body ul{padding-left:1.5rem;margin-bottom:1rem}
.modal-body li{margin-bottom:0.5rem}
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--bg);box-shadow:0 -2px 20px rgba(0,0,0,0.1);padding:1.5rem;z-index:3000;display:none}
.cookie-banner.active{display:block}
.cookie-banner p{margin-bottom:1rem;font-size:0.9rem}
.cookie-banner .btn-accent{padding:0.5rem 1.5rem;font-size:0.9rem}
.success-popup{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background:var(--bg);border-radius:8px;padding:2rem;box-shadow:0 10px 40px rgba(0,0,0,0.2);z-index:2500;display:none;text-align:center;max-width:400px;width:90%}
.success-popup.active{display:block}
.success-popup-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:2400;display:none}
.success-popup-overlay.active{display:block}
.success-icon{width:60px;height:60px;background:var(--accent);border-radius:50%;margin:0 auto 1rem;display:flex;align-items:center;justify-content:center}
.success-icon svg{width:30px;height:30px;stroke:#fff;stroke-width:3;fill:none}
.divider{height:1px;background:var(--border);margin:2rem 0}
@media(max-width:991px){.header .navbar-collapse{background:var(--bg);position:absolute;top:100%;left:0;right:0;padding:1rem;box-shadow:0 5px 20px rgba(0,0,0,0.1)}.header .nav-link{padding:0.75rem 0}}
@media(max-width:767px){h1{font-size:1.75rem}h2{font-size:1.5rem}.hero{padding:4rem 0 3rem}.hero h1{font-size:2rem}.section{padding:3rem 0}.content-image{width:100%}}
