* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #667eea;
--secondary-color: #764ba2;
--text-dark: #2c3e50;
--text-light: #5a6c7d;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #e9ecef;
--accent-gold: #ffd700;
--success-green: #28a745;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
--shadow-md: 0 4px 15px rgba(0,0,0,0.1);
--shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-white);
overflow-x: hidden;
}

.main-header {
background: var(--bg-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
padding: 1rem 0;
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-img {
border-radius: 50%;
object-fit: cover;
}

.brand-name {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-dark);
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: color 0.3s ease;
padding: 0.5rem 0;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.nav-link:hover,
.nav-link.active {
color: var(--primary-color);
}

.hero-banner {
position: relative;
height: 650px;
background: url('images/1.jpg') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--bg-white);
max-width: 900px;
padding: 0 2rem;
}

.hero-title {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.4rem;
margin-bottom: 2.5rem;
font-weight: 300;
}

.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--accent-gold);
color: var(--text-dark);
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
background: #ffed4e;
}

.section-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 5rem 2.5rem;
}

.section-heading {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: var(--text-dark);
font-weight: 700;
}

.features-section {
background: var(--bg-light);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}

.feature-card {
background: var(--bg-white);
padding: 2.5rem;
border-radius: 15px;
text-align: center;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

.feature-icon {
font-size: 3.5rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-dark);
}

.feature-card p {
color: var(--text-light);
line-height: 1.8;
}

.services-overview {
background: var(--bg-white);
}

.services-showcase {
display: flex;
flex-direction: column;
gap: 5rem;
}

.service-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.service-item.reverse {
grid-template-columns: 1fr 1fr;
}

.service-item.reverse img {
order: 2;
}

.service-item.reverse .service-details {
order: 1;
}

.service-item img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: var(--shadow-md);
}

.service-details h3 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.service-details p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
font-size: 1.1rem;
}

.service-features {
list-style: none;
margin-bottom: 2rem;
}

.service-features li {
padding: 0.7rem 0;
color: var(--text-dark);
font-size: 1.05rem;
}

.service-features i {
color: var(--primary-color);
margin-right: 0.8rem;
}

.service-link {
display: inline-block;
padding: 0.9rem 2rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
text-decoration: none;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s ease;
}

.service-link:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.fun-fact-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--bg-white);
}

.fun-fact-box {
background: rgba(255, 255, 255, 0.1);
padding: 3rem;
border-radius: 20px;
text-align: center;
max-width: 900px;
margin: 0 auto;
backdrop-filter: blur(10px);
}

.fact-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
color: var(--accent-gold);
}

.fun-fact-box h3 {
font-size: 2rem;
margin-bottom: 1.5rem;
}

.fun-fact-box p {
font-size: 1.2rem;
line-height: 1.9;
}

.checklist-section {
background: var(--bg-light);
}

.checklist-intro {
max-width: 800px;
margin: 0 auto 3rem;
text-align: center;
}

.checklist-intro p {
font-size: 1.2rem;
color: var(--text-light);
}

.checklist-items {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.checklist-item {
background: var(--bg-white);
padding: 1.5rem 2rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
}

.checklist-item:hover {
box-shadow: var(--shadow-md);
}

.check-box {
display: none;
}

.checklist-item label {
display: flex;
align-items: center;
gap: 1rem;
cursor: pointer;
font-size: 1.1rem;
color: var(--text-dark);
}

.checklist-item .unchecked {
color: var(--border-color);
font-size: 1.5rem;
}

.checklist-item .checked {
display: none;
color: var(--primary-color);
font-size: 1.5rem;
}

.check-box:checked + label .unchecked {
display: none;
}

.check-box:checked + label .checked {
display: inline;
}

.check-box:checked + label span {
text-decoration: line-through;
color: var(--text-light);
}

.testimonials-section {
background: var(--bg-white);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 3rem;
}

.testimonial-card {
background: var(--bg-light);
padding: 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow-sm);
}

.stars {
color: var(--accent-gold);
font-size: 1.2rem;
margin-bottom: 1.5rem;
}

.testimonial-text {
color: var(--text-dark);
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
font-style: italic;
}

.client-name {
color: var(--text-light);
font-weight: 600;
}

.cta-section {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--bg-white);
text-align: center;
}

.cta-section h2 {
font-size: 2.8rem;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.3rem;
margin-bottom: 2.5rem;
}

.cta-button-alt {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--bg-white);
color: var(--primary-color);
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.cta-button-alt:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.site-footer {
background: var(--text-dark);
color: var(--bg-white);
padding: 4rem 0 0;
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
padding: 0 2.5rem 3rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
}

.footer-column h4 {
font-size: 1.3rem;
margin-bottom: 1.5rem;
color: var(--bg-white);
}

.footer-column p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.8;
margin-bottom: 1rem;
}

.reg-number {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.6);
margin-top: 1rem;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--primary-color);
}

.footer-column i {
margin-right: 0.5rem;
color: var(--primary-color);
}

.footer-bottom {
background: rgba(0, 0, 0, 0.2);
text-align: center;
padding: 2rem;
}

.footer-bottom p {
color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
padding: 2rem;
z-index: 10000;
display: none;
}

.cookie-banner.show {
display: block;
animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}

.cookie-text h4 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--text-dark);
}

.cookie-text p {
color: var(--text-light);
line-height: 1.6;
}

.cookie-text a {
color: var(--primary-color);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-shrink: 0;
}

.cookie-btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}

.accept-all {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
}

.accept-all:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.customize {
background: var(--bg-light);
color: var(--text-dark);
}

.customize:hover {
background: var(--border-color);
}

.decline {
background: transparent;
color: var(--text-light);
border: 1px solid var(--border-color);
}

.decline:hover {
border-color: var(--text-light);
}

@media (max-width: 1024px) {
.header-container {
padding: 0 1.5rem;
}
.section-wrapper {
padding: 4rem 1.5rem;
}
.service-item,
.service-item.reverse {
grid-template-columns: 1fr;
}
.service-item.reverse img,
.service-item.reverse .service-details {
order: unset;
}
.cookie-content {
flex-direction: column;
text-align: center;
}
.cookie-buttons {
flex-wrap: wrap;
justify-content: center;
}
}

@media (max-width: 768px) {
.primary-nav ul {
display: none;
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.2rem;
}
.section-heading {
font-size: 2rem;
}
.features-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.cta-button,
.cta-button-alt {
padding: 1rem 2rem;
font-size: 1rem;
}
}