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

:root {
    --primary-dark: #1a1a1a;
    --primary-text: #333333;
    --secondary-text: #666666;
    --accent-color: #2c5f8d;
    --accent-hover: #1d4469;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --error-color: #c84c4c;
    --success-color: #4c8c5f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--primary-text);
    background-color: var(--white);
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    text-align: center;
}

.cookie-content a {
    color: #94c5e8;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: var(--accent-hover);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-minimal {
    padding: 20px 30px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    display: flex;
    flex-direction: column;
    padding: 80px 20px 60px;
    max-width: 720px;
    margin: 0 auto;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 50px;
}

.headline-large {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.subheadline {
    font-size: 22px;
    line-height: 1.5;
    color: var(--secondary-text);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.opening-text {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--primary-text);
    font-weight: 400;
}

.content-narrow p,
.content-wide p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.inline-cta-box {
    background-color: var(--light-bg);
    padding: 32px;
    margin: 48px 0;
    border-left: 4px solid var(--accent-color);
}

.cta-inline-text {
    font-size: 19px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.cta-link-underline {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-link-underline:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

.image-text-split {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.benefit-list {
    list-style: none;
    margin-top: 24px;
}

.benefit-list li {
    padding-left: 28px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.quote-large {
    max-width: 800px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    color: var(--primary-dark);
    text-align: center;
}

.quote-large cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-text);
}

.section-title-center {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.insight-card {
    padding: 36px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
}

.insight-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--secondary-text);
    margin: 0;
}

.cta-section-centered {
    text-align: center;
    margin-top: 56px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 42px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.dark-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 20px;
}

.section-title-light {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--white);
}

.case-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.case-item {
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.case-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.case-item p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.feature-vertical {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 40px;
}

.feature-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.feature-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--secondary-text);
}

.cta-sticky-wrapper {
    position: sticky;
    bottom: 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-sticky-link {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-sticky-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

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

.section-title-large {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.services-subtitle {
    font-size: 19px;
    color: var(--secondary-text);
    line-height: 1.6;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
    border-color: var(--accent-color);
    background-color: #f0f7fc;
}

.featured-badge {
    position: absolute;
    top: -14px;
    right: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

.service-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--primary-text);
    border-bottom: 1px solid var(--border-color);
}

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

.price-reveal {
    text-align: center;
    margin-bottom: 24px;
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.price-period {
    display: block;
    font-size: 15px;
    color: var(--secondary-text);
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--accent-hover);
}

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

.form-container-narrow {
    max-width: 640px;
    margin: 0 auto;
}

.form-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.form-subtitle {
    font-size: 17px;
    text-align: center;
    color: var(--secondary-text);
    margin-bottom: 48px;
    line-height: 1.6;
}

.selected-service-box {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    text-align: center;
    border: 1px solid var(--accent-color);
}

.selected-service-box p {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: var(--primary-dark);
}

.btn-change {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-change:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.btn-submit {
    padding: 18px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3e50 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-final-cta {
    display: inline-block;
    padding: 20px 48px;
    background-color: var(--white);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.page-header-simple {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.page-subtitle {
    font-size: 20px;
    color: var(--secondary-text);
    line-height: 1.6;
}

.quote-box {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 48px 0;
    border-left: 5px solid var(--accent-color);
}

.quote-box blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.6;
}

.image-grid-about {
    width: 100%;
    margin: 40px 0;
}

.image-grid-about img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 40px;
}

.approach-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.approach-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--secondary-text);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
    justify-content: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--secondary-text);
    text-align: center;
}

.services-detailed {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 48px;
    position: relative;
}

.featured-service {
    border-color: var(--accent-color);
    background-color: #f9fcff;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px 0 0 4px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    flex: 1;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    white-space: nowrap;
}

.price-period-small {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-text);
}

.service-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 32px;
}

.service-detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.detailed-list {
    list-style: none;
    margin-bottom: 32px;
}

.detailed-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.detailed-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-cta {
    margin-top: 32px;
    text-align: center;
}

.services-note {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-top: 48px;
}

.services-note h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.process-list {
    padding-left: 20px;
}

.process-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--primary-text);
}

.contact-info-block {
    margin-bottom: 48px;
}

.contact-info-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 15px;
    color: var(--secondary-text);
    font-style: italic;
}

.contact-note-box {
    background-color: var(--light-bg);
    padding: 24px;
    border-left: 4px solid var(--accent-color);
    margin: 40px 0;
}

.contact-note-box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

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

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

.thanks-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.thanks-text {
    font-size: 19px;
    color: var(--secondary-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-confirmation-box {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.service-confirmation-box p {
    font-size: 17px;
    margin: 0;
    color: var(--primary-text);
}

.next-steps {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

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

.steps-list li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: var(--primary-text);
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.thanks-note {
    background-color: #fff8e6;
    padding: 24px;
    border-left: 4px solid #f0b429;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-note p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

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

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.legal-page .content-narrow {
    max-width: 800px;
}

.legal-update {
    font-size: 15px;
    color: var(--secondary-text);
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 28px;
}

.legal-page ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 17px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-hover);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-content p {
        text-align: left;
    }

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

    .nav-minimal {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .headline-large {
        font-size: 36px;
    }

    .subheadline {
        font-size: 18px;
    }

    .image-text-split {
        flex-direction: column;
        gap: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .section-title-large {
        font-size: 32px;
    }

    .quote-large {
        font-size: 22px;
    }

    .pricing-cards {
        gap: 24px;
    }

    .price-card {
        padding: 28px;
    }

    .service-name {
        font-size: 22px;
    }

    .price-amount {
        font-size: 34px;
    }

    .final-cta-title {
        font-size: 32px;
    }

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

    .page-title {
        font-size: 36px;
    }

    .service-header {
        flex-direction: column;
    }

    .service-detail-card {
        padding: 32px 24px;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .thanks-title {
        font-size: 32px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .headline-large {
        font-size: 48px;
    }

    .pricing-cards {
        max-width: 700px;
    }
}
