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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --success: #4CAF50;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    display: flex;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

.btn-accept:hover {
    background: #45a049;
}

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

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

.nav-sidebar {
    width: 260px;
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
}

.nav-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 0.8rem;
}

.nav-links a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.7rem 0.8rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
}

.main-content {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-editorial {
    position: relative;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hero-overlay h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.intro-block {
    padding: 3rem 2rem;
    background: var(--white);
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto;
}

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

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.feature-cards-alt {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.card-left,
.card-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.card-left img,
.card-right img {
    width: 45%;
    object-fit: cover;
    border-radius: 4px;
}

.card-text {
    flex: 1;
}

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

.card-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.cta-inline {
    padding: 3rem 2rem;
    background: var(--secondary-color);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary,
.btn-select,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
}

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

.btn-primary:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

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

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

.btn-select {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    width: 100%;
}

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

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

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

.multi-column-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.column-main {
    flex: 2;
}

.column-main h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.column-main p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.column-sidebar-info {
    flex: 1;
}

.info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.info-card h4 {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 0.95rem;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.services-highlight {
    padding: 4rem 2rem;
    background: var(--white);
}

.services-highlight h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-grid-magazine {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.02) 0%, rgba(15, 52, 96, 0.02) 100%);
}

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

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.badge,
.badge-featured {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.testimonial-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.testimonial-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-left: 5px solid var(--secondary-color);
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.form-container-centered {
    max-width: 650px;
    margin: 0 auto;
}

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

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

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border: 1px solid var(--medium-gray);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--medium-gray);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    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);
}

.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 260px;
    right: 0;
    background: var(--primary-color);
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
}

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

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

.sticky-cta-content span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-sticky:hover {
    background: #d63850;
}

.page-header {
    padding: 4rem 2rem 2rem;
    background: var(--light-gray);
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    padding: 4rem 2rem;
    background: var(--white);
}

.story-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-narrow p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.values-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-top: 4px solid var(--accent-color);
}

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

.value-card p {
    line-height: 1.7;
}

.team-intro {
    padding: 4rem 2rem;
    background: var(--white);
}

.team-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.team-image {
    flex: 1;
}

.methodology-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.methodology-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.method-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
    font-family: 'Arial', sans-serif;
}

.method-step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.method-step p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-about {
    padding: 3rem 2rem;
    background: var(--secondary-color);
}

.services-intro {
    padding: 3rem 2rem;
    background: var(--white);
}

.services-detailed {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--accent-color);
}

.service-detail-card.enterprise {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.02) 0%, rgba(15, 52, 96, 0.05) 100%);
}

.badge-featured {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-color);
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
}

.service-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.services-comparison {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

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

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-table th {
    font-weight: 700;
    font-size: 1.05rem;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

.comparison-table .highlight-row {
    background: rgba(233, 69, 96, 0.05);
}

.cta-services {
    padding: 3rem 2rem;
    background: var(--secondary-color);
}

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

.contact-layout {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-block p {
    line-height: 1.7;
    color: var(--text-dark);
}

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

.note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder img {
    width: 100%;
    border: 1px solid var(--medium-gray);
}

.additional-info {
    padding: 3rem 2rem;
    background: var(--light-gray);
}

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

.info-card-contact {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-top: 3px solid var(--accent-color);
}

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

.info-card-contact p {
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.service-confirmation {
    background: var(--light-gray);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 4rem 0;
}

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

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.step {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: var(--light-gray);
    padding: 2rem;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact-reminder {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 4px;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
}

.legal-page {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

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

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

.legal-content ol li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
}

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

.cookie-table th {
    background: var(--light-gray);
    font-weight: 700;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .nav-sidebar {
        width: 100%;
        position: static;
        padding: 1.5rem;
    }

    .main-content {
        margin-left: 0;
    }

    .final-cta-sticky {
        left: 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-editorial {
        height: 50vh;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .card-left,
    .card-right {
        flex-direction: column;
    }

    .card-left img,
    .card-right img {
        width: 100%;
    }

    .multi-column-section {
        flex-direction: column;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .team-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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

@media (max-width: 640px) {
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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