*{margin:0;padding:0;box-sizing:border-box}
:root{--primary:#FF9800;--primary-dark:#E68900;--text-dark:#212121;--text-light:#757575;--bg-light:#FAFAFA;--bg-white:#FFFFFF;--border-color:#E0E0E0;--shadow:0 2px 8px rgba(0,0,0,0.08)}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:16px;line-height:1.6;color:var(--text-dark);background-color:var(--bg-white)}
h1,h2,h3{font-weight:600;line-height:1.3;color:var(--text-dark)}
h1{font-size:2.25rem;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(--primary);text-decoration:none;transition:color 0.3s}
a:hover{color:var(--primary-dark)}
img{max-width:100%;height:auto;display:block}
.header{position:fixed;top:0;left:0;right:0;background:var(--bg-white);box-shadow:var(--shadow);z-index:1000;padding:0.75rem 0}
.header .navbar-brand{font-size:1.5rem;font-weight:700;color:var(--primary)}
.header .navbar-brand:hover{color:var(--primary-dark)}
.header .nav-link{color:var(--text-dark);font-weight:500;padding:0.5rem 1rem;transition:color 0.3s}
.header .nav-link:hover{color:var(--primary)}
.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='%23FF9800' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}
.hero{min-height:100vh;display:flex;align-items:center;background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('images/hero-nutrition.jpg') center/cover no-repeat;padding-top:80px;color:#fff}
.hero h1{color:#fff;font-size:2.5rem}
.hero p{color:rgba(255,255,255,0.9);font-size:1.125rem}
.section{padding:4rem 0}
.section-alt{background-color:var(--bg-light)}
.section-title{position:relative;padding-bottom:1rem;margin-bottom:2rem}
.section-title::after{content:'';position:absolute;bottom:0;left:0;width:60px;height:3px;background:var(--primary)}
.section-title.text-center::after{left:50%;transform:translateX(-50%)}
.card-custom{background:var(--bg-white);border-radius:8px;box-shadow:var(--shadow);overflow:hidden;transition:transform 0.3s,box-shadow 0.3s;height:100%}
.card-custom:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.12)}
.card-custom img{width:100%;height:200px;object-fit:cover}
.card-custom .card-body{padding:1.5rem}
.card-custom .card-title{font-size:1.125rem;margin-bottom:0.75rem}
.btn-primary-custom{background:var(--primary);color:#fff;border:none;padding:0.75rem 1.5rem;border-radius:4px;font-weight:500;transition:background 0.3s}
.btn-primary-custom:hover{background:var(--primary-dark);color:#fff}
.btn-outline-custom{background:transparent;color:var(--primary);border:2px solid var(--primary);padding:0.75rem 1.5rem;border-radius:4px;font-weight:500;transition:all 0.3s}
.btn-outline-custom:hover{background:var(--primary);color:#fff}
.table-custom{background:var(--bg-white);border-radius:8px;overflow:hidden;box-shadow:var(--shadow)}
.table-custom thead{background:var(--primary);color:#fff}
.table-custom th,.table-custom td{padding:1rem;border:none;border-bottom:1px solid var(--border-color)}
.table-custom tbody tr:last-child td{border-bottom:none}
.table-custom tbody tr:hover{background:var(--bg-light)}
.list-custom{list-style:none;padding:0}
.list-custom li{position:relative;padding-left:1.5rem;margin-bottom:0.75rem}
.list-custom li::before{content:'';position:absolute;left:0;top:0.5rem;width:8px;height:8px;background:var(--primary);border-radius:50%}
.accordion-custom .card{border:none;border-radius:8px;margin-bottom:0.5rem;box-shadow:var(--shadow)}
.accordion-custom .card-header{background:var(--bg-white);border:none;padding:0}
.accordion-custom .btn-link{color:var(--text-dark);font-weight:500;text-decoration:none;width:100%;text-align:left;padding:1rem 1.5rem;display:flex;justify-content:space-between;align-items:center}
.accordion-custom .btn-link:hover{color:var(--primary)}
.accordion-custom .btn-link::after{content:'+';font-size:1.25rem;color:var(--primary)}
.accordion-custom .btn-link[aria-expanded="true"]::after{content:'-'}
.accordion-custom .card-body{padding:0 1.5rem 1.5rem}
.two-column{display:grid;grid-template-columns:1fr;gap:2rem;align-items:center}
.two-column.reverse .two-column-img{order:-1}
.two-column-img img{border-radius:8px;box-shadow:var(--shadow);width:100%;max-width:400px}
.two-column-img.float-left{float:none;margin:0 auto 1.5rem}
.two-column-img.float-right{float:none;margin:0 auto 1.5rem}
.glossar-item{background:var(--bg-white);padding:1.5rem;border-radius:8px;box-shadow:var(--shadow);margin-bottom:1rem}
.glossar-item h3{color:var(--primary);font-size:1.125rem;margin-bottom:0.5rem}
.disclaimer-box{background:var(--bg-light);border-left:4px solid var(--primary);padding:1.5rem;border-radius:0 8px 8px 0;margin:2rem 0}
.disclaimer-box h3{font-size:1rem;margin-bottom:0.75rem}
.disclaimer-box p{font-size:0.875rem;margin-bottom:0}
.form-custom .form-control{border:1px solid var(--border-color);border-radius:4px;padding:0.75rem 1rem;transition:border-color 0.3s,box-shadow 0.3s}
.form-custom .form-control:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(255,152,0,0.1)}
.form-custom label{font-weight:500;margin-bottom:0.5rem}
.footer{background:var(--text-dark);color:#fff;padding:3rem 0 1.5rem}
.footer h3{color:#fff;font-size:1.125rem;margin-bottom:1rem}
.footer p,.footer a{color:rgba(255,255,255,0.7);font-size:0.875rem}
.footer a:hover{color:var(--primary)}
.footer-links{list-style:none;padding:0}
.footer-links li{margin-bottom:0.5rem}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);margin-top:2rem;padding-top:1.5rem;text-align:center}
.footer-bottom p{margin-bottom:0.5rem}
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--text-dark);color:#fff;padding:1rem;z-index:2000;display:none}
.cookie-banner.show{display:block}
.cookie-banner p{margin-bottom:0.75rem;font-size:0.875rem}
.cookie-banner .btn{margin-right:0.5rem;margin-bottom:0.5rem}
.modal-policy .modal-header{border-bottom:1px solid var(--border-color)}
.modal-policy .modal-title{color:var(--text-dark)}
.modal-policy .modal-body{max-height:60vh;overflow-y:auto}
.modal-policy .modal-body h3{font-size:1.125rem;margin-top:1.5rem;margin-bottom:0.75rem}
.modal-policy .modal-body h3:first-child{margin-top:0}
.modal-policy .modal-body p,.modal-policy .modal-body li{font-size:0.875rem}
.success-message{display:none;background:#4CAF50;color:#fff;padding:1rem;border-radius:4px;text-align:center;margin-top:1rem}
.success-message.show{display:block}
.cta-section{background:var(--bg-light);text-align:center;padding:4rem 0}
.cta-section h2{margin-bottom:1rem}
.cta-section p{max-width:600px;margin:0 auto 1.5rem}
.contact-info-item{display:flex;align-items:flex-start;margin-bottom:1rem}
.contact-info-item svg{width:20px;height:20px;margin-right:0.75rem;flex-shrink:0;fill:var(--primary)}
.contact-info-item p{margin-bottom:0}
@media (min-width:768px){
h1{font-size:2.75rem}
h2{font-size:2rem}
.hero h1{font-size:3rem}
.section{padding:5rem 0}
.two-column{grid-template-columns:1fr 1fr}
.two-column-img.float-left{float:left;margin:0 2rem 1rem 0}
.two-column-img.float-right{float:right;margin:0 0 1rem 2rem}
}
@media (min-width:992px){
.hero h1{font-size:3.5rem}
.section{padding:6rem 0}
}
