:root {
--primary-red: #DC143C;
--light-red: #FF6B6B;
--pure-white: #FFFFFF;
--off-white: #F8F9FA;
--text-dark: #2C3E50;
--text-light: #6C757D;
--border-gray: #DEE2E6;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
}

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

body {
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--pure-white);
}

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

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

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

.site-logo {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

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

.primary-nav {
display: flex;
gap: 2rem;
}

.primary-nav a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: color 0.3s ease;
}

.primary-nav a:hover {
color: var(--primary-red);
}

.container-main {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.hero-banner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
padding: 5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

.hero-content h1 {
font-size: 3.5rem;
line-height: 1.2;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.hero-subtitle {
font-size: 1.3rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.greeting-section {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.greeting {
background: var(--off-white);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
color: var(--text-dark);
}

.cta-button {
display: inline-block;
background: var(--primary-red);
color: var(--pure-white);
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.cta-button:hover {
background: var(--light-red);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.hero-image {
width: 100%;
border-radius: 20px;
box-shadow: var(--shadow-lg);
object-fit: cover;
}

.features-grid {
padding: 5rem 0;
background: var(--off-white);
}

.features-grid h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3rem;
color: var(--text-dark);
}

.feature-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.feature-item {
background: var(--pure-white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow-sm);
text-align: center;
transition: transform 0.3s ease;
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.icon-holder {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--primary-red);
}

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

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

.services-preview {
padding: 5rem 0;
}

.services-preview h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3rem;
color: var(--text-dark);
}

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

.service-box {
background: var(--pure-white);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: transform 0.3s ease;
}

.service-box:hover {
transform: translateY(-8px);
}

.service-img {
width: 100%;
height: 250px;
object-fit: cover;
}

.service-box h3 {
padding: 1.5rem 1.5rem 1rem;
font-size: 1.7rem;
color: var(--text-dark);
}

.service-box p {
padding: 0 1.5rem 1.5rem;
color: var(--text-light);
line-height: 1.6;
}

.learn-more {
display: inline-block;
padding: 0 1.5rem 1.5rem;
color: var(--primary-red);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.learn-more:hover {
color: var(--light-red);
}

.lead-form-section {
padding: 5rem 0;
background: var(--off-white);
}

.form-wrapper {
max-width: 800px;
margin: 0 auto;
background: var(--pure-white);
padding: 3rem;
border-radius: 20px;
box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--text-dark);
text-align: center;
}

.form-intro {
text-align: center;
color: var(--text-light);
margin-bottom: 2rem;
}

.consultation-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.9rem;
border: 2px solid var(--border-gray);
border-radius: 8px;
font-family: inherit;
font-size: 1rem;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-red);
}

.submit-btn {
background: var(--primary-red);
color: var(--pure-white);
padding: 1.1rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background: var(--light-red);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.testimonials-area {
padding: 5rem 0;
}

.testimonials-area h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3rem;
color: var(--text-dark);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

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

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

.client-name {
color: var(--primary-red);
font-weight: 600;
}

.site-footer {
background: var(--text-dark);
color: var(--pure-white);
padding: 3rem 0 1rem;
}

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

.footer-section h4 {
margin-bottom: 1rem;
color: var(--pure-white);
font-size: 1.2rem;
}

.footer-section p {
margin-bottom: 0.5rem;
color: rgba(255,255,255,0.8);
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
color: var(--primary-red);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.6);
max-width: 1200px;
margin: 0 auto;
}

.cookie-banner {
position: fixed;
bottom: -100%;
left: 0;
right: 0;
background: var(--pure-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
padding: 2rem;
z-index: 2000;
transition: bottom 0.4s ease;
}

.cookie-banner.active {
bottom: 0;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
margin-bottom: 1rem;
color: var(--text-dark);
}

.cookie-content p {
margin-bottom: 1rem;
color: var(--text-light);
line-height: 1.6;
}

.cookie-content a {
color: var(--primary-red);
}

.cookie-buttons {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
}

.cookie-accept,
.cookie-decline {
padding: 0.8rem 2rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-accept {
background: var(--primary-red);
color: var(--pure-white);
}

.cookie-accept:hover {
background: var(--light-red);
}

.cookie-decline {
background: var(--border-gray);
color: var(--text-dark);
}

.cookie-decline:hover {
background: #CED4DA;
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 3000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.modal-overlay.active {
opacity: 1;
visibility: visible;
}

.modal-content {
background: var(--pure-white);
padding: 3rem;
border-radius: 20px;
max-width: 500px;
text-align: center;
transform: scale(0.8);
transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
transform: scale(1);
}

.modal-content h2 {
color: var(--primary-red);
margin-bottom: 1rem;
font-size: 2.2rem;
}

.modal-content p {
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.6;
}

.modal-close {
background: var(--primary-red);
color: var(--pure-white);
padding: 0.9rem 2.5rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-close:hover {
background: var(--light-red);
}

@media (max-width: 768px) {
.primary-nav {
flex-direction: column;
gap: 1rem;
}

.hero-banner {
grid-template-columns: 1fr;
padding: 3rem 1rem;
}

.hero-content h1 {
font-size: 2.5rem;
}

.form-row {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
}

.cookie-buttons {
flex-direction: column;
}
}