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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7bb6;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --error-color: #c0392b;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

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

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

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

.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

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

.logo:hover {
    color: var(--secondary-color);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

.editorial-flow {
    background: var(--bg-white);
}

.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.editorial-wrapper.narrow {
    max-width: 620px;
}

.hero-editorial {
    background: var(--bg-light);
    padding: 80px 0 60px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.inline-image {
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.inline-image-wide {
    margin: 50px -40px;
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.story-intro,
.insight-section,
.trust-building,
.reality-check,
.urgency-section,
.final-trust,
.final-cta {
    padding: 60px 0;
}

.story-intro h2,
.problem-reveal h2,
.insight-section h2,
.trust-building h2,
.testimonials-inline h2,
.reality-check h2,
.services-reveal h2,
.urgency-section h2,
.final-trust h2,
.final-cta h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-intro p,
.problem-reveal p,
.insight-section p,
.trust-building p,
.reality-check p,
.urgency-section p,
.final-trust p,
.final-cta p {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.cta-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-block;
}

.cta-link:hover {
    color: var(--primary-color);
}

.problem-reveal {
    background: #fafbfc;
    padding: 60px 0;
    margin: 60px 0;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 19px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
    font-size: 22px;
}

.highlight-text {
    font-size: 21px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

blockquote {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
}

.process-steps {
    margin: 40px 0;
}

.step {
    margin: 35px 0;
    padding: 25px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.testimonials-inline {
    background: #f0f4f8;
    padding: 60px 0;
    margin: 60px 0;
}

.testimonial {
    margin: 30px 0;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.risk-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.risk-item {
    padding: 25px;
    background: white;
    border: 1px solid #ffeaa7;
    border-left: 5px solid #fdcb6e;
    border-radius: 4px;
}

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

.risk-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    padding: 35px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.service-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.btn-select:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
}

.guarantees {
    margin: 40px 0;
}

.guarantee {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.guarantee h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.guarantee p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-form-section {
    background: var(--bg-light);
    padding: 70px 0;
    margin: 60px 0 0 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--secondary-color);
}

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

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.inline-cta-strong {
    margin: 40px 0;
    text-align: center;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button-large:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-content span {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d35400;
    transform: scale(1.05);
}

.emphasis {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    background: #fff3e0;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.team-members {
    margin: 50px 0;
}

.member {
    margin: 35px 0;
    padding: 30px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.member h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member .role {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.value {
    padding: 25px;
    background: white;
    border-left: 5px solid var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.value p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.impact-list {
    list-style: none;
    margin: 30px 0;
}

.impact-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

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

.cta-section {
    background: var(--bg-light);
    padding: 60px 0;
    margin: 60px 0 0 0;
}

.service-detail {
    margin: 50px 0;
    padding: 40px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    position: relative;
}

.featured-service {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

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

.service-header h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.price-large {
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-description {
    margin-top: 30px;
}

.service-description h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-description ul li {
    margin: 10px 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-description p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-service {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
}

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

.btn-service.primary:hover {
    background: #d35400;
}

.btn-service.urgent {
    background: var(--error-color);
}

.btn-service.urgent:hover {
    background: #a93226;
}

.process-timeline {
    margin: 40px 0;
}

.timeline-step {
    margin: 30px 0;
    padding: 25px;
    padding-left: 80px;
    position: relative;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.step-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.faq-section {
    margin: 60px 0;
}

.faq-item {
    margin: 25px 0;
    padding: 25px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-method {
    padding: 30px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-method h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-method p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-method .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-approach,
.location-section,
.visit-info,
.data-protection-note {
    padding: 40px 0;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 80px 0 60px;
    text-align: center;
}

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

.thanks-content {
    padding: 60px 0;
}

.next-steps {
    margin: 40px 0;
}

.next-step {
    margin: 30px 0;
    padding: 25px;
    padding-left: 80px;
    position: relative;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.next-step .step-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.next-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-note {
    margin: 40px 0;
    padding: 25px;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 4px;
}

.thanks-note h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.thanks-note p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
}

.meanwhile-section,
.additional-resources {
    padding: 40px 0;
}

.preparation-list {
    margin: 25px 0;
    padding-left: 25px;
}

.preparation-list li {
    margin: 12px 0;
    font-size: 17px;
    line-height: 1.6;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.resource-link {
    padding: 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 17px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.resource-link:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-home {
    padding: 40px 0;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page section {
    margin: 40px 0;
}

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

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

.legal-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin: 10px 0;
    font-size: 17px;
    line-height: 1.6;
}

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

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 16px;
    color: var(--text-light);
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

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

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 15px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-editorial h1 {
        font-size: 52px;
    }

    .inline-image-wide {
        margin: 50px 0;
        border-radius: 8px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .sticky-content {
        flex-direction: row;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-method {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero-editorial h1 {
        font-size: 34px;
    }

    .lead-text {
        font-size: 19px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-form {
        padding: 25px;
    }
}