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

:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border: #bdc3c7;
    --success: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

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

.nav-links a:hover {
    color: var(--secondary);
    text-decoration: none;
}

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

.btn-sticky {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.hero-visual {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
                url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-content-center {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

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

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

.btn-hero {
    background: var(--accent);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-hero:hover {
    background: #c0392b;
}

.section-narrow-story {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.story-container {
    max-width: 680px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.story-image-inline {
    margin: 3rem 0;
}

.story-image-inline img {
    width: 100%;
    border-radius: 8px;
}

.section-trust-builder {
    padding: 4rem 5%;
    background: var(--primary);
    color: white;
}

.trust-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
}

.trust-stat h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.section-problem-amplify {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.problem-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

.section-insight-reveal {
    padding: 5rem 5%;
    background: white;
}

.insight-box {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.insight-visual {
    flex: 1;
    min-width: 300px;
}

.insight-visual img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-inline {
    background: var(--secondary);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-inline:hover {
    background: #2980b9;
}

.section-testimonials-inline {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.testimonial-flow {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary);
    border-radius: 4px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.section-benefits-visual {
    padding: 5rem 5%;
    background: white;
}

.section-title-centered {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-large {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    position: relative;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.benefit-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-small {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-small h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-small p {
    color: var(--text-light);
    line-height: 1.7;
}

.section-services-pricing {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.price-card.featured {
    border: 2px solid var(--secondary);
}

.badge-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    min-height: 80px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.section-urgency {
    padding: 3rem 5%;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.urgency-timer {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
}

.section-form-main {
    padding: 5rem 5%;
    background: white;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.form-privacy label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.section-final-cta {
    padding: 5rem 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    background: var(--accent);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.btn-large:hover {
    background: #c0392b;
    text-decoration: none;
}

.footer {
    background: #1a252f;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    color: white;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie {
    background: var(--success);
    color: white;
}

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie:hover,
.btn-cookie-alt:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    margin-top: 70px;
}

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

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

.about-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary);
}

.about-content h3 {
    font-size: 1.7rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-list li strong {
    color: var(--secondary);
}

.about-numbers {
    padding: 4rem 5%;
    background: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.number-box {
    text-align: center;
    min-width: 200px;
}

.number-box h3 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.number-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.services-detailed {
    padding: 3rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail {
    background: white;
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

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

.service-detail h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.service-detail ul {
    list-style: none;
    padding: 0;
}

.service-detail ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    line-height: 1.7;
}

.service-detail ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.services-cta {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-box {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info-box a {
    color: var(--secondary);
    font-weight: 600;
}

.link-inline {
    color: var(--secondary);
    font-weight: 600;
}

.contact-map-section {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-map-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.map-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-hero {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #ecf0f1, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.thanks-message {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-selected {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1.5rem 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
    text-decoration: none;
}

.thanks-contact-info {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-page {
    padding: 6rem 5% 3rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 70px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.gdpr-table th,
.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-container h2,
    .problem-content h2,
    .testimonial-flow h2,
    .section-title-centered,
    .pricing-intro h2 {
        font-size: 1.8rem;
    }

    .trust-wrapper {
        gap: 2rem;
    }

    .trust-stat h3 {
        font-size: 2.5rem;
    }

    .insight-box {
        flex-direction: column;
    }

    .price-card {
        min-width: 100%;
    }

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }
}