* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
color: #2c3e50;
line-height: 1.6;
background-color: #fdfdfb;
}
.header-fixed {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: rgba(255, 255, 255, 0.98);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.navbar {
padding: 1rem 0;
}
.navbar-brand {
font-size: 1.5rem;
font-weight: 600;
color: #2c3e50;
}
.navbar-brand:hover {
color: #81c784;
}
.nav-link {
color: #555;
font-weight: 500;
padding: 0.5rem 1rem;
transition: color 0.3s ease;
}
.nav-link:hover {
color: #81c784;
}
.btn-cta {
background: linear-gradient(135deg, #81c784, #66bb6a);
color: white;
padding: 0.5rem 1.5rem;
border-radius: 25px;
font-weight: 600;
border: none;
transition: all 0.3s ease;
}
.btn-cta:hover {
background: linear-gradient(135deg, #66bb6a, #4caf50);
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(129, 199, 132, 0.4);
}
main {
margin-top: 80px;
}
.hero-section {
position: relative;
background: linear-gradient(135deg, #f5f7f5 0%, #e8f5e9 100%);
padding: 4rem 0;
min-height: 600px;
display: flex;
align-items: center;
}
.hero-overlay {
width: 100%;
}
.hero-title {
font-size: 3rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.hero-text {
font-size: 1.25rem;
color: #555;
margin-bottom: 2rem;
line-height: 1.6;
}
.btn-hero {
background: linear-gradient(135deg, #81c784, #66bb6a);
color: white;
padding: 1rem 2.5rem;
border-radius: 30px;
font-weight: 600;
font-size: 1.1rem;
border: none;
transition: all 0.3s ease;
display: inline-block;
text-decoration: none;
}
.btn-hero:hover {
background: linear-gradient(135deg, #66bb6a, #4caf50);
color: white;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(129, 199, 132, 0.4);
text-decoration: none;
}
.content-section {
padding: 5rem 0;
}
.bg-light {
background-color: #f9faf9;
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1.5rem;
}
.section-text {
font-size: 1.1rem;
color: #555;
margin-bottom: 1.5rem;
line-height: 1.7;
}
.rounded-lg {
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.card-content {
background: white;
padding: 2rem;
border-radius: 15px;
height: 100%;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-content:hover {
transform: translateY(-5px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}
.card-title {
font-size: 1.75rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 1rem;
}
.card-text {
font-size: 1.05rem;
color: #666;
line-height: 1.7;
}
.info-box {
background: white;
padding: 3rem;
border-radius: 15px;
border-left: 5px solid #81c784;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.info-text {
font-size: 1.1rem;
color: #555;
margin-bottom: 1.5rem;
line-height: 1.7;
}
.info-list {
list-style: none;
padding-left: 0;
}
.info-list li {
font-size: 1.05rem;
color: #666;
margin-bottom: 1rem;
padding-left: 2rem;
position: relative;
line-height: 1.6;
}
.info-list li:before {
content: "✓";
position: absolute;
left: 0;
color: #81c784;
font-weight: bold;
font-size: 1.3rem;
}
.faq-item {
background: white;
padding: 2rem;
border-radius: 12px;
margin-bottom: 1.5rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
transition: box-shadow 0.3s ease;
}
.faq-item:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.faq-question {
font-size: 1.3rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 1rem;
}
.faq-answer {
font-size: 1.05rem;
color: #666;
line-height: 1.7;
margin-bottom: 0;
}
.contact-form {
background: white;
padding: 3rem;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.form-control {
padding: 1rem;
font-size: 1.05rem;
border: 2px solid #e0e0e0;
border-radius: 8px;
transition: border-color 0.3s ease;
}
.form-control:focus {
border-color: #81c784;
box-shadow: 0 0 0 0.2rem rgba(129, 199, 132, 0.25);
}
.btn-primary {
background: linear-gradient(135deg, #81c784, #66bb6a);
border: none;
padding: 1rem 2rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: 8px;
transition: all 0.3s ease;
}
.btn-primary:hover {
background: linear-gradient(135deg, #66bb6a, #4caf50);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(129, 199, 132, 0.4);
}
.contact-info {
background: #f9faf9;
padding: 2rem;
border-radius: 12px;
}
.contact-info h4 {
color: #2c3e50;
font-weight: 600;
}
.contact-info p {
color: #666;
margin-bottom: 0.5rem;
}
.disclaimer-box {
background: #fff9e6;
padding: 1.5rem;
border-radius: 10px;
border-left: 4px solid #ffb74d;
}
.disclaimer-box p {
margin-bottom: 0;
color: #666;
line-height: 1.6;
}
.disclaimer-box a {
color: #81c784;
font-weight: 600;
}
.footer {
background-color: #2c3e50;
color: white;
padding: 3rem 0 1rem;
}
.footer h5 {
font-weight: 600;
margin-bottom: 1.5rem;
color: #81c784;
}
.footer p {
color: #bdc3c7;
line-height: 1.8;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.footer-links a {
color: #bdc3c7;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #81c784;
}
.copyright {
color: #95a5a6;
font-size: 0.9rem;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid #34495e;
}
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(44, 62, 80, 0.98);
color: white;
padding: 1.5rem 0;
z-index: 9999;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
display: none;
}
.cookie-banner.show {
display: block;
}
.cookie-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.cookie-content p {
margin: 0;
flex: 1;
min-width: 300px;
}
.cookie-content a {
color: #81c784;
text-decoration: underline;
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.btn-cookie,
.btn-cookie-reject,
.btn-cookie-settings {
padding: 0.75rem 1.5rem;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-cookie {
background-color: #81c784;
color: white;
}
.btn-cookie:hover {
background-color: #66bb6a;
transform: translateY(-2px);
}
.btn-cookie-reject {
background-color: #e74c3c;
color: white;
}
.btn-cookie-reject:hover {
background-color: #c0392b;
transform: translateY(-2px);
}
.btn-cookie-settings {
background-color: transparent;
color: white;
border: 2px solid white;
}
.btn-cookie-settings:hover {
background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
.hero-title {
font-size: 2.5rem;
}
.section-title {
font-size: 2rem;
}
.navbar-nav {
padding-top: 1rem;
}
.nav-item {
margin-bottom: 0.5rem;
}
}
@media (max-width: 767px) {
.hero-title {
font-size: 2rem;
}
.hero-text {
font-size: 1.1rem;
}
.section-title {
font-size: 1.75rem;
}
.content-section {
padding: 3rem 0;
}
.cookie-content {
flex-direction: column;
text-align: center;
}
.cookie-buttons {
justify-content: center;
width: 100%;
}
}
