/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5c8a;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav {
    display: none;
}

.nav a {
    margin-left: 30px;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #2980b9;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-secondary-large,
.btn-service,
.btn-submit,
.btn-sticky {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
    background-color: #2980b9;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-large:hover {
    background-color: #1a5c8a;
    transform: translateY(-2px);
}

.btn-secondary-large {
    background-color: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-secondary-large:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-service {
    background-color: #27ae60;
    color: #ffffff;
    width: 100%;
}

.btn-service:hover {
    background-color: #229954;
}

.btn-submit {
    background-color: #2980b9;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1a5c8a;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1527515862127-a4fc05baf7a5?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.85), rgba(39, 174, 96, 0.75));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Stacked Sections - Alternating Backgrounds */
.intro-block {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.intro-block h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
}

.problem-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.two-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.column-left,
.column-right {
    flex: 1;
}

.column-left h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.column-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.column-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-section {
    background-color: #ecf0f1;
    padding: 70px 20px;
}

.insight-section h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
}

/* Services Preview Section */
.services-preview-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.services-preview-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 300px;
    background-color: #f8f9fa;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #2980b9;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.price-unit {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #2c3e50;
    padding: 90px 20px;
    color: #ffffff;
}

.testimonials-section h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #bdc3c7;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.process-section h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    color: #555;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.order-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #ecf0f1;
    padding: 80px 20px;
}

.guarantee-section h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.guarantee-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.guarantee-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.guarantee-item p {
    color: #555;
    line-height: 1.6;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-final h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    padding: 100px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.page-hero-small {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

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

/* About Page Styles */
.about-intro {
    background-color: #ffffff;
    padding: 80px 20px;
}

.about-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.values-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.values-section h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2980b9;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

.team-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.team-list {
    list-style: none;
    margin-top: 20px;
}

.team-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #34495e;
}

.team-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.stats-section {
    background-color: #ecf0f1;
    padding: 80px 20px;
}

.stats-section h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
}

.approach-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.approach-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.certifications-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.certifications-section h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.cert-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cert-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #27ae60;
}

.cert-item p {
    color: #555;
}

.cta-about {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-about h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Services Page Styles */
.services-detail-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-detail.reverse {
    background-color: #ffffff;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.service-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #555;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.5rem;
}

.service-pricing {
    margin: 25px 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    display: block;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-cta {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Page Styles */
.contact-content {
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2980b9;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 1.1rem;
    margin: 0;
}

.map-note {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.contact-faq {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.contact-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.contact-cta {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Thanks Page Styles */
.thanks-hero {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-content {
    background-color: #ffffff;
    padding: 80px 20px;
}

.thanks-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.thanks-step .step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.thanks-step .step-content p {
    color: #555;
    line-height: 1.6;
}

.thanks-service-info {
    margin-top: 50px;
}

.selected-service-box {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.selected-service-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #27ae60;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-note {
    color: #555;
    line-height: 1.6;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.thanks-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.info-box {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2980b9;
}

.info-box p {
    color: #555;
    line-height: 1.6;
}

.thanks-cta {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.thanks-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.thanks-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Legal Page Styles */
.legal-content {
    background-color: #ffffff;
    padding: 60px 20px;
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #34495e;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 5px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #2980b9;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
    color: #34495e;
}

.legal-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.legal-date {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

.gdpr-right {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.gdpr-right h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2980b9;
}

.gdpr-right p {
    color: #555;
    line-height: 1.6;
}

.cookie-table {
    margin: 25px 0;
}

.cookie-row {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-name {
    font-weight: 700;
    color: #2c3e50;
    font-family: monospace;
}

.cookie-purpose {
    color: #555;
}

.cookie-duration {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-content h2 {
        font-size: 3.5rem;
    }

    .two-column {
        flex-direction: row;
        align-items: center;
    }

    .testimonials-wrapper {
        flex-direction: row;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 45%;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-content,
    .service-detail-image {
        flex: 1;
    }

    .thanks-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .thanks-step {
        flex: 1 1 45%;
    }

    .cookie-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-name {
        flex: 0 0 150px;
    }

    .cookie-purpose {
        flex: 1;
    }

    .cookie-duration {
        flex: 0 0 100px;
        text-align: right;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h2 {
        font-size: 4rem;
    }

    .services-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}

/* Mobile Navigation Active State */
.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.nav.active a {
    margin: 10px 0;
}