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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: #1a1a1a;
}

.hero-spacious {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.hero-content-minimal {
    text-align: center;
    max-width: 900px;
}

.title-xl {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.subtitle-large {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

.cta-primary-large {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    opacity: 1;
    background: #333;
    transform: translateY(-2px);
}

.intro-breath {
    padding: 8rem 5%;
    background: #ffffff;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.text-emphasis {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    text-align: center;
}

.promise-block {
    padding: 10rem 5%;
    background: #f8f8f8;
}

.dual-column-asymmetric {
    display: flex;
    gap: 8rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.column-text {
    flex: 1.2;
}

.column-visual {
    flex: 1;
}

.heading-large {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.body-spacious {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.8rem;
}

.image-placeholder img {
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.insight-reveal {
    padding: 10rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.heading-statement {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.insight-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    color: #ddd;
}

.process-flow {
    padding: 10rem 5%;
    background: #ffffff;
}

.process-header {
    text-align: center;
    margin-bottom: 6rem;
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card-minimal {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    padding: 3rem 2.5rem;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.card-minimal:hover {
    transform: translateY(-5px);
    background: #f0f0f0;
}

.card-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.card-price {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #333;
}

.transformation-story {
    padding: 10rem 5%;
    background: #f8f8f8;
}

.heading-centered {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -1px;
}

.benefit-list-spacious {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-text {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
}

.social-proof-minimal {
    padding: 10rem 5%;
    background: #ffffff;
}

.testimonial-centered {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.testimonial-centered:last-child {
    margin-bottom: 0;
}

.testimonial-quote {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #999;
    letter-spacing: 0.5px;
}

.final-cta-block {
    padding: 12rem 5%;
    background: #1a1a1a;
}

.cta-content-spacious {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.cta-subtext {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.cta-secondary-large {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-secondary-large:hover {
    opacity: 1;
    background: #f0f0f0;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 4rem;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.form-minimal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #1a1a1a;
}

.form-field input,
.form-field textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-field input[readonly] {
    background: #f8f8f8;
    color: #666;
}

.btn-submit-large {
    padding: 1.2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-large:hover {
    background: #333;
}

.footer-minimal {
    padding: 5rem 5% 3rem;
    background: #f8f8f8;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.3px;
}

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 999;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #f0f0f0;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero-simple {
    padding: 12rem 5% 8rem;
    background: #f8f8f8;
    margin-top: 5rem;
}

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

.page-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666;
}

.about-intro {
    padding: 8rem 5%;
    background: #ffffff;
}

.intro-large {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    text-align: center;
}

.about-story {
    padding: 8rem 5%;
    background: #f8f8f8;
}

.story-layout {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.heading-medium {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 10rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.philosophy-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.credentials {
    padding: 8rem 5%;
    background: #ffffff;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.credentials-list li:last-child {
    border-bottom: none;
}

.cta-about {
    padding: 8rem 5%;
    background: #f8f8f8;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 3rem;
    background: #ffffff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.btn-cta-about {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cta-about:hover {
    opacity: 1;
    background: #333;
}

.services-detailed {
    padding: 8rem 5%;
    background: #ffffff;
}

.service-item-detailed {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 4rem;
    background: #f8f8f8;
}

.service-item-detailed.featured {
    background: #1a1a1a;
    color: #ffffff;
}

.service-badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 1.5rem;
}

.service-item-detailed.featured .service-badge {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 0.5rem 1rem;
}

.service-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2.5rem;
}

.service-item-detailed.featured .service-description {
    color: #ddd;
}

.service-details {
    margin-bottom: 2.5rem;
}

.service-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.7rem;
}

.service-item-detailed.featured .service-details p {
    color: #bbb;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 300;
}

.price-note {
    font-size: 0.95rem;
    color: #999;
    margin-left: -1rem;
}

.service-item-detailed.featured .price-note {
    color: #bbb;
}

.btn-service.featured {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-service.featured:hover {
    background: #f0f0f0;
}

.services-cta {
    padding: 8rem 5%;
    background: #f8f8f8;
}

.cta-simple {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading-simple {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.cta-text-simple {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.btn-cta-simple {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cta-simple:hover {
    opacity: 1;
    background: #333;
}

.contact-info-section {
    padding: 8rem 5%;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-image {
    flex: 1;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note {
    padding: 2rem;
    background: #f8f8f8;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.contact-cta {
    padding: 8rem 5%;
    background: #f8f8f8;
}

.cta-box-contact {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-heading-contact {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.cta-text-contact {
    font-size: 1.15rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.btn-cta-contact {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cta-contact:hover {
    opacity: 1;
    background: #f0f0f0;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5%;
    background: #f8f8f8;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
}

.thanks-detail {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 2rem;
}

.thanks-next {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-thanks-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-thanks-primary:hover {
    opacity: 1;
    background: #333;
}

.btn-thanks-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-thanks-secondary:hover {
    opacity: 1;
    background: #1a1a1a;
    color: #ffffff;
}

.thanks-info {
    padding: 8rem 5%;
    background: #ffffff;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-heading {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
}

.step-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.legal-page {
    padding: 10rem 5% 8rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.legal-date {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.gdpr-table thead,
.cookie-table thead {
    background: #f8f8f8;
}

.gdpr-table th,
.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.gdpr-table td,
.cookie-table td {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    border-bottom: 1px solid #eee;
}

@media (max-width: 1024px) {
    .title-xl {
        font-size: 3.5rem;
    }

    .dual-column-asymmetric,
    .story-layout,
    .contact-layout {
        flex-direction: column;
        gap: 4rem;
    }

    .process-cards {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .title-xl {
        font-size: 2.5rem;
    }

    .subtitle-large {
        font-size: 1.2rem;
    }

    .heading-large {
        font-size: 2rem;
    }

    .text-emphasis {
        font-size: 1.4rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .intro-large {
        font-size: 1.5rem;
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .service-pricing button {
        width: 100%;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .modal-content {
        padding: 2rem;
    }

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

    .btn-thanks-primary,
    .btn-thanks-secondary {
        width: 100%;
    }

    .service-item-detailed {
        padding: 2rem;
    }

    .cta-box,
    .cta-box-contact {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .title-xl {
        font-size: 2rem;
    }

    .heading-large {
        font-size: 1.7rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .card-minimal {
        padding: 2rem 1.5rem;
    }

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .thanks-title {
        font-size: 2rem;
    }
}