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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #f4a259;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
}

.navigation {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 50px;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: var(--light-color);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e4620;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #7da550;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.intro-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.services-overview {
    background-color: var(--light-color);
    padding: 80px 30px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: calc(33.333% - 25px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1e4620;
}

.why-us-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.why-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-content h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.benefits-list strong {
    display: block;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.benefits-list span {
    color: #666;
    font-size: 15px;
}

.process-section {
    background-color: var(--light-color);
    padding: 80px 30px;
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 25px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-content h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 35px;
}

.testimonial {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.form-section {
    background-color: var(--light-color);
    padding: 80px 30px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    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: var(--primary-color);
}

.btn-submit {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.compliance-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.compliance-section h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.compliance-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 60px 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-box p {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #e39448;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1e4620;
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #545b62;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    text-align: center;
    padding: 100px 30px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
}

.about-intro-split,
.mission-split,
.coverage-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 50px;
}

.mission-split {
    flex-direction: row-reverse;
}

.about-text,
.mission-text,
.coverage-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2,
.mission-text h2,
.coverage-text h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-text p,
.mission-text p,
.coverage-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.about-image,
.mission-image,
.coverage-image {
    flex: 1;
}

.about-image img,
.mission-image img,
.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section,
.team-section,
.partners-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.values-section h2,
.team-section h2,
.partners-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-content,
.partners-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-content p,
.partners-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 50px;
}

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

.service-detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-text h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.service-detail-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.price-box {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.services-detailed {
    padding: 60px 0;
}

.additional-info {
    background-color: var(--light-color);
    padding: 80px 30px;
}

.additional-info h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.info-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.how-to-reach,
.location-split,
.faq-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.how-to-reach h2,
.location-split h2,
.faq-section h2 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.reach-methods {
    display: flex;
    gap: 30px;
}

.reach-item {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.reach-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.reach-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.location-split {
    display: flex;
    gap: 50px;
}

.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 19px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 35px;
}

.step-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.timeline-item {
    flex: 1;
    text-align: center;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.timeline-content h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7da550;
}

.contact-info-simple {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
    text-align: center;
}

.contact-info-simple h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info-simple p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.email-display {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-page {
    padding: 60px 30px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.legal-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #999;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: var(--primary-color);
    color: #ffffff;
}

.gdpr-table th,
.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background-color: var(--light-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .why-us-split,
    .testimonials-split,
    .about-intro-split,
    .mission-split,
    .coverage-split,
    .service-detail-split,
    .contact-split,
    .location-split {
        flex-direction: column;
    }

    .process-steps,
    .step-timeline,
    .reach-methods {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .intro-content,
    .why-content,
    .testimonials-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 15px 25px;
        font-size: 14px;
    }

    .values-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}