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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    text-decoration: none;
    color: #6c757d;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 28px;
    color: #1a202c;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.2s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 120px 60px;
    background: #f8f9fa;
}

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

.content-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.services-showcase {
    padding: 100px 60px;
}

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 40px;
}

.section-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
}

.service-grid-split {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #e9ecef;
}

.service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a202c;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

.btn-select-service {
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select-service:hover {
    background: #1a252f;
}

.testimonial-inline {
    padding: 80px 60px;
    background: #1a202c;
}

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

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #a0aec0;
    font-style: normal;
}

.form-section {
    padding: 120px 60px;
}

.form-container-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

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

.benefits-list li {
    font-size: 17px;
    color: #4a5568;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.why-us-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

.content-centered {
    max-width: 1100px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.reasons-grid {
    display: flex;
    gap: 60px;
}

.reason {
    flex: 1;
}

.reason h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a202c;
}

.reason p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #718096;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept {
    background: #2c3e50;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: #e9ecef;
    color: #2c3e50;
}

.btn-cookie-reject:hover {
    background: #cbd5e0;
}

.page-header-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.header-content {
    flex: 1;
    padding: 80px 100px;
}

.header-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a202c;
}

.header-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
}

.header-image {
    flex: 1;
    overflow: hidden;
    background: #e9ecef;
}

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

.story-section {
    padding: 100px 60px;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 80px;
}

.story-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-block-image {
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    background: #e9ecef;
}

.story-block-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

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

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.process-section {
    padding: 100px 60px;
}

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

.process-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.process-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e9ecef;
    margin-bottom: 16px;
}

.step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-section-alt {
    padding: 100px 60px;
    background: #1a202c;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-centered p {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 32px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #1a202c;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-cta-secondary:hover {
    background: #f8f9fa;
}

.page-intro {
    padding: 80px 60px;
    background: #f8f9fa;
}

.intro-content-wide {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content-wide h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-content-wide p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

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

.service-detail-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.service-detail-content {
    flex: 1.2;
    padding: 20px;
}

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-includes {
    margin: 32px 0;
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

.service-includes h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a202c;
}

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

.service-includes ul li {
    font-size: 16px;
    color: #4a5568;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-includes ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 20px;
}

.price-large {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin: 28px 0;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #e9ecef;
}

.service-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.guarantees-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.guarantees-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.guarantees-list {
    display: flex;
    gap: 50px;
}

.guarantee-item {
    flex: 1;
}

.guarantee-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-section-centered {
    padding: 100px 60px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-box p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-cta-primary:hover {
    background: #1a252f;
}

.contact-hero {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.contact-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a202c;
}

.contact-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-info-section {
    padding: 80px 60px;
}

.contact-split-layout {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.detail-block {
    margin-bottom: 40px;
}

.detail-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.detail-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

.detail-block .note {
    font-size: 15px;
    color: #718096;
    margin-top: 12px;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.map-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.map-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.map-info .access-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
    font-size: 15px;
    color: #718096;
}

.faq-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.faq-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a202c;
}

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

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta-section {
    padding: 80px 60px;
}

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

.cta-centered-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-centered-box p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 44px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-primary-large:hover {
    background: #1a252f;
}

.thanks-section {
    padding: 100px 60px;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-intro {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 17px;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #1a202c;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 32px;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.steps-list li strong {
    display: block;
    font-size: 19px;
    margin-bottom: 8px;
    color: #1a202c;
}

.steps-list li p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-info-box {
    background: #fff7ed;
    padding: 28px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a202c;
}

.thanks-info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #1a252f;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #2c3e50;
    color: #ffffff;
}

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

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

.legal-container h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a202c;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: #1a202c;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1a252f;
}

@media (max-width: 1024px) {
    .nav-split {
        padding: 20px 40px;
    }

    .hero-split,
    .page-header-split {
        flex-direction: column;
    }

    .hero-content,
    .header-content {
        padding: 60px 40px;
    }

    .hero-image,
    .header-image {
        min-height: 400px;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
    }

    .form-container-split,
    .contact-split-layout {
        flex-direction: column;
        gap: 50px;
    }

    .reasons-grid,
    .values-grid,
    .process-steps,
    .guarantees-list {
        flex-direction: column;
    }

    .service-detail-split,
    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-right {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-content h1,
    .header-content h1 {
        font-size: 36px;
    }

    .content-narrow h2,
    .section-header-offset h2 {
        font-size: 32px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .intro-content-wide h1,
    .contact-hero-content h1,
    .thanks-container h1 {
        font-size: 36px;
    }

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