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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-left: 80px;
}

.hero-text-block h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-visual-overlap {
    flex: 1;
    position: relative;
    transform: translateY(-40px) rotate(3deg);
}

.hero-visual-overlap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

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

.intro-offset {
    padding: 100px 20px;
    background: var(--bg-white);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto 0 15%;
}

.intro-narrow h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-cards-staggered {
    padding: 80px 20px;
    background: var(--bg-light);
    position: relative;
}

.card-left,
.card-right,
.card-center {
    max-width: 400px;
    margin-bottom: 40px;
}

.card-left {
    margin-left: 10%;
}

.card-right {
    margin-left: auto;
    margin-right: 10%;
}

.card-center {
    margin: 0 auto;
}

.trust-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.card-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.5;
}

.problem-amplify {
    padding: 120px 20px;
    background: var(--bg-white);
}

.problem-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-image {
    flex: 0.9;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-text {
    flex: 1.1;
}

.problem-text h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 35px;
    line-height: 1.2;
}

.problem-list {
    list-style: none;
    margin-bottom: 35px;
}

.problem-list li {
    padding: 15px 0 15px 35px;
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 700;
}

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

.cta-inline:hover {
    color: #d35400;
    border-bottom-color: #d35400;
}

.services-asymmetric {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-header-offset {
    max-width: 800px;
    margin: 0 0 70px 8%;
}

.services-header-offset h2 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-intro {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-card.large {
    flex: 0 1 calc(50% - 15px);
}

.service-card.medium {
    flex: 0 1 calc(33.333% - 20px);
}

.service-card.small {
    flex: 0 1 calc(25% - 23px);
}

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

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

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

.price-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

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

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-offset {
    padding: 100px 20px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.testimonial-block blockquote {
    font-size: 32px;
    color: white;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 25px;
}

.testimonial-block cite {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-style: normal;
}

.why-section-split {
    padding: 120px 20px;
    background: var(--bg-white);
}

.why-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 70px;
    align-items: center;
}

.why-visual {
    flex: 1;
    transform: rotate(2deg);
}

.why-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-point h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.cta-sticky-trigger {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 20%;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.final-cta-asymmetric {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 15% 0 auto;
    text-align: right;
}

.final-cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: 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;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.98);
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: block;
    padding: 16px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

.about-hero {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 56px;
    color: white;
    margin-bottom: 25px;
}

.about-lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-grid {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.values-grid h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1;
    background: white;
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

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

.team-section {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.team-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-stats {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat {
    flex: 1;
}

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

.stat p {
    font-size: 17px;
    color: var(--text-dark);
}

.coverage-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.coverage-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.coverage-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.coverage-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.coverage-highlights span {
    background: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-about {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.services-hero {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    color: white;
    margin-bottom: 25px;
}

.services-hero-lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 100px 20px;
    background: var(--bg-white);
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.service-detail-header {
    background: var(--bg-light);
    padding: 35px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.service-detail-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.service-detail-content {
    padding: 45px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-detail-content h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 35px;
}

.service-detail-content ul li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.premium-badge {
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.services-cta {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-hero {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    color: white;
    margin-bottom: 25px;
}

.contact-lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    padding: 100px 20px;
    background: var(--bg-white);
}

.contact-info-block {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.info-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.info-card a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-map-placeholder {
    max-width: 1100px;
    margin: 0 auto;
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
}

.map-overlay p {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.map-address {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.contact-additional {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.contact-additional h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.locations-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.location-card {
    flex: 1;
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.location-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.location-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.location-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.location-card a:hover {
    text-decoration: underline;
}

.thanks-section {
    min-height: 100vh;
    padding: 160px 20px 80px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.selected-service-info {
    font-size: 16px;
    color: var(--text-dark);
}

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

.thanks-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 35px;
}

.thanks-steps li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 14px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 35px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 20px 80px;
}

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

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

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 48px;
    }

    .hero-content-offset {
        flex-direction: column;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-visual-overlap {
        transform: none;
    }

    .problem-split,
    .story-offset,
    .why-section-split {
        flex-direction: column;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        flex: 0 1 100%;
    }

    .values-container,
    .team-stats,
    .contact-info-block,
    .locations-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 12px 20px;
    }

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

    .logo {
        font-size: 20px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .intro-narrow h2,
    .why-content h2,
    .cta-about h2 {
        font-size: 32px;
    }

    .services-header-offset h2,
    .values-grid h2,
    .team-section h2,
    .services-cta h2,
    .contact-additional h2 {
        font-size: 36px;
    }

    .problem-text h2,
    .final-cta-content h2 {
        font-size: 36px;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 38px;
    }

    .testimonial-block blockquote {
        font-size: 24px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .form-row {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-detail-price {
        text-align: left;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }
}
