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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-asymmetric {
    position: relative;
    padding: 20px 5%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

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

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 5%;
    gap: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-text-block {
    flex: 1.2;
    max-width: 600px;
    padding-left: 40px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-visual-offset {
    flex: 1;
    position: relative;
    transform: translateY(-30px) rotate(-2deg);
}

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

.intro-overlap {
    padding: 80px 5%;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.intro-content {
    display: flex;
    gap: 50px;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
}

.intro-card-left {
    flex: 1.5;
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.intro-card-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.intro-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(40px);
}

.stat-item {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    padding: 35px;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.problem-amplify {
    display: flex;
    gap: 60px;
    padding: 100px 5%;
    align-items: center;
    background-color: var(--bg-light);
}

.problem-visual {
    flex: 0.8;
    transform: rotate(3deg) translateX(-20px);
}

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

.problem-text {
    flex: 1.2;
    max-width: 650px;
}

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

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

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.services-asymmetric {
    padding: 100px 5%;
    background-color: white;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    transform: translateX(40px);
}

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header-offset p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1400px;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 300px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card.card-1 {
    transform: rotate(-1deg);
}

.service-card.card-2 {
    transform: translateY(20px);
}

.service-card.card-3 {
    transform: rotate(1deg);
}

.service-card.card-4 {
    transform: translateY(-15px);
}

.service-card.card-5 {
    transform: rotate(-0.5deg);
}

.service-card.card-6 {
    transform: translateY(10px) rotate(0.5deg);
}

.service-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

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

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

.btn-select-service {
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: 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: #2980b9;
    transform: translateY(-2px);
}

.insight-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1.3;
}

.insight-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.insight-quote {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    transform: rotate(-2deg);
}

.insight-quote blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.insight-quote cite {
    font-size: 16px;
    opacity: 0.8;
    font-style: normal;
}

.trust-builder {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.trust-builder h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.clients-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.client-testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.client-testimonial:nth-child(1) {
    transform: translateY(-15px);
}

.client-testimonial:nth-child(2) {
    transform: translateY(10px);
}

.client-testimonial:nth-child(3) {
    transform: translateY(-5px);
}

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

.client-name {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section-offset {
    padding: 100px 5%;
    background-color: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    transform: rotate(-0.5deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-intro p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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 {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 18px 35px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #c0392b;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    text-align: center;
}

.page-hero-content h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-content p,
.page-hero-services p,
.page-hero-contact p {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    display: flex;
    gap: 60px;
    padding: 100px 5%;
    align-items: center;
}

.story-block-left {
    flex: 1;
}

.story-block-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.story-image-right {
    flex: 1;
    transform: rotate(-2deg);
}

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

.mission-offset {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.mission-content h2 {
    font-size: 44px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.mission-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-point {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-point:nth-child(1) {
    transform: translateY(-10px);
}

.mission-point:nth-child(3) {
    transform: translateY(-10px);
}

.mission-point h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mission-point p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 100px 5%;
}

.team-section h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

.values-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.values-container h2 {
    font-size: 44px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about {
    padding: 100px 5%;
    background-color: white;
}

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

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

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

.cta-btn-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.cta-btn-large:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.services-detail {
    padding: 80px 5%;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: inline-flex;
}

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

.price-note {
    font-size: 18px;
    color: var(--text-light);
}

.service-detail-image {
    flex: 0.8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.process-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    background-color: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

.form-section-services {
    padding: 100px 5%;
    background-color: white;
}

.contact-main {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 40px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

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

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

.contact-map-placeholder {
    flex: 1;
    transform: rotate(-1deg);
}

.contact-map-placeholder img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-additional {
    padding: 60px 5%;
    background-color: var(--bg-light);
}

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

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.faq-contact {
    padding: 80px 5%;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

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

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

.thanks-hero {
    padding: 100px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.service-confirmation {
    margin: 25px 0;
}

.service-selected {
    font-size: 18px;
    padding: 15px 25px;
    background-color: #e8f5e9;
    border-radius: 8px;
    color: var(--success-color);
    display: inline-block;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.next-steps {
    padding: 80px 5%;
}

.next-steps h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-box {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    background-color: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

.resources-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.resources-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.resources-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.resource-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--accent-color);
}

.thanks-cta {
    padding: 80px 5%;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-box a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

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

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

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

.legal-container h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.legal-container ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-container ul li {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.gdpr-table {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--secondary-color);
}

.gdpr-table h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: var(--primary-color);
}

.gdpr-table p {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-visual-offset {
        transform: rotate(0deg);
    }

    .intro-content {
        flex-direction: column;
    }

    .intro-card-left {
        transform: rotate(0deg);
    }

    .intro-stats-right {
        transform: translateY(0);
    }

    .problem-amplify {
        flex-direction: column;
        padding: 60px 5%;
    }

    .problem-visual {
        transform: rotate(0deg) translateX(0);
    }

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

    .service-card.card-1,
    .service-card.card-2,
    .service-card.card-3,
    .service-card.card-4,
    .service-card.card-5,
    .service-card.card-6 {
        transform: none;
    }

    .insight-container {
        flex-direction: column;
    }

    .insight-quote {
        transform: rotate(0deg);
    }

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

    .about-story {
        flex-direction: column;
    }

    .story-image-right {
        transform: rotate(0deg);
    }

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

    .contact-map-placeholder {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        padding: 15px 25px;
        border-bottom: 1px solid var(--bg-light);
    }

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

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

    .section-header-offset {
        transform: translateX(0);
    }

    .section-header-offset h2 {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

    .footer-main {
        flex-direction: column;
    }
}