* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #2c3e50;
line-height: 1.6;
background-color: #fafaf8;
}
.header-fixed {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: #ffffff;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar {
padding: 1rem 0;
}
.navbar-brand {
font-size: 1.5rem;
font-weight: 700;
color: #6b8e23;
}
.navbar-brand:hover {
color: #556b1a;
}
.nav-link {
color: #2c3e50;
font-weight: 500;
padding: 0.5rem 1rem;
transition: color 0.3s ease;
}
.nav-link:hover {
color: #6b8e23;
}
.btn-cta {
background: linear-gradient(135deg, #6b8e23 0%, #556b1a 100%);
color: #ffffff;
border: none;
padding: 0.5rem 1.5rem;
border-radius: 6px;
font-weight: 600;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(107,142,35,0.3);
color: #ffffff;
}
.hero-section {
padding: 140px 0 80px;
background: linear-gradient(135deg, #f5f7f0 0%, #ffffff 100%);
}
.hero-title {
font-size: 2.8rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.hero-text {
font-size: 1.2rem;
color: #5a6c7d;
margin-bottom: 2rem;
line-height: 1.6;
}
.content-section {
padding: 80px 0;
}
.section-title {
font-size: 2.2rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1.5rem;
}
.content-section p {
font-size: 1.1rem;
color: #4a5568;
margin-bottom: 1.2rem;
line-height: 1.6;
}
.content-section h3 {
font-size: 1.6rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 1rem;
}
.bg-light {
background-color: #f8f9fa;
}
.rounded-img {
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-primary {
background: linear-gradient(135deg, #6b8e23 0%, #556b1a 100%);
border: none;
padding: 0.75rem 2rem;
border-radius: 6px;
font-weight: 600;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(107,142,35,0.3);
background: linear-gradient(135deg, #556b1a 0%, #6b8e23 100%);
}
.info-box {
background: #ffffff;
border-left: 4px solid #6b8e23;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.info-box h4 {
color: #6b8e23;
font-weight: 700;
margin-bottom: 1rem;
}
.styled-list {
list-style: none;
padding-left: 0;
}
.styled-list li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
}
.styled-list li:before {
content: "•";
color: #6b8e23;
font-weight: bold;
font-size: 1.5rem;
position: absolute;
left: 0;
}
.accordion .card {
border: none;
border-bottom: 1px solid #e2e8f0;
border-radius: 0;
}
.accordion .card-header {
background: transparent;
border: none;
padding: 0;
}
.accordion .btn-link {
color: #2c3e50;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
padding: 1.2rem 1rem;
width: 100%;
text-align: left;
}
.accordion .btn-link:hover {
color: #6b8e23;
text-decoration: none;
}
.accordion .card-body {
padding: 1rem;
color: #4a5568;
font-size: 1.05rem;
}
.contact-form {
background: #ffffff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.contact-form .form-control {
border: 2px solid #e2e8f0;
border-radius: 6px;
padding: 0.75rem;
font-size: 1.05rem;
}
.contact-form .form-control:focus {
border-color: #6b8e23;
box-shadow: 0 0 0 0.2rem rgba(107,142,35,0.15);
}
.contact-info {
text-align: center;
color: #4a5568;
}
.contact-info p {
margin-bottom: 0.5rem;
}
.footer {
background: #2c3e50;
color: #ffffff;
padding: 2rem 0;
margin-top: 4rem;
}
.footer a {
color: #ffffff;
text-decoration: none;
transition: color 0.3s ease;
}
.footer a:hover {
color: #6b8e23;
}
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #2c3e50;
color: #ffffff;
padding: 1.5rem;
z-index: 9999;
box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
display: none;
}
.cookie-banner.show {
display: block;
}
.cookie-content {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.cookie-content p {
margin-bottom: 1rem;
font-size: 1rem;
}
.cookie-buttons {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
.cookie-buttons .btn {
min-width: 120px;
}
@media (max-width: 768px) {
.hero-section {
padding: 120px 0 60px;
}
.hero-title {
font-size: 2rem;
}
.hero-text {
font-size: 1rem;
}
.section-title {
font-size: 1.8rem;
}
.content-section {
padding: 60px 0;
}
.navbar-nav {
padding: 1rem 0;
}
.btn-cta {
margin: 1rem 0 0 0;
}
}
