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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d7a4f;
    --accent-color: #52b788;
    --text-dark: #1b1b1b;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.hero-offset {
    margin-top: 80px;
    padding: 4rem 5% 6rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 85vh;
}

.hero-text-block {
    flex: 1.2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

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

.hero-visual-block {
    flex: 1;
}

.hero-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.cta-inline:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.trust-strip {
    background: var(--bg-light);
    padding: 2rem 5%;
    text-align: center;
}

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

.trust-statement {
    font-size: 1.2rem;
    color: var(--text-light);
}

.problem-section.asymmetric {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.problem-visual {
    flex: 0.8;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transform: rotate(2deg);
}

.problem-content {
    flex: 1.2;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.problem-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.insight-block {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 5%;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card-offset {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-left: 10%;
}

.insight-card-offset h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.insight-card-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.services-preview.stacked {
    padding: 6rem 5% 4rem;
    background: var(--bg-light);
}

.service-intro-text {
    text-align: center;
    margin-bottom: 4rem;
}

.service-intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    width: calc(33.333% - 2rem);
    min-width: 280px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card.offset-top {
    margin-top: 2rem;
}

.service-card.offset-bottom {
    margin-bottom: 2rem;
}

.service-icon {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.cta-service {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-service:hover {
    background: var(--secondary-color);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-asymmetric {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
}

.testimonial-main {
    flex: 1.5;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-secondary {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.why-us-creative {
    padding: 6rem 5%;
    background: white;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

.why-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.why-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.why-item:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateX(10px);
}

.why-item.large {
    width: calc(60% - 1rem);
}

.why-item.medium {
    width: calc(50% - 1rem);
}

.why-item.small {
    width: calc(40% - 1rem);
}

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

.cta-break {
    background: var(--primary-color);
    padding: 5rem 5%;
    text-align: center;
    color: white;
}

.cta-break-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-break-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.form-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group a {
    color: var(--secondary-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-trust {
    background: white;
    padding: 4rem 5%;
    text-align: center;
}

.trust-final {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 3rem 5% 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
}

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

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

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 27, 27, 0.98);
    color: white;
    padding: 1.5rem 5%;
    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;
    gap: 2rem;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-cookie:hover {
    transform: scale(1.05);
}

.page-hero-offset {
    margin-top: 80px;
    padding: 4rem 5% 3rem;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 5%;
}

.story-block-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.values-asymmetric {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 280px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card.offset-right {
    margin-right: 5%;
}

.value-card.offset-left {
    margin-left: 5%;
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 5%;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-grid-creative {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.team-member {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s;
}

.team-member:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.team-member.large-card {
    width: calc(50% - 1.5rem);
}

.team-member.medium-card {
    width: calc(45% - 1.5rem);
}

.team-member.small-card {
    width: calc(30% - 1.5rem);
}

.member-photo {
    height: 300px;
    overflow: hidden;
}

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

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.certifications {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.cert-content {
    max-width: 900px;
    margin: 0 auto;
}

.cert-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cert-list {
    list-style: none;
    padding-left: 0;
}

.cert-list li {
    padding: 1rem 1.5rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about-cta {
    padding: 5rem 5%;
    text-align: center;
    background: var(--secondary-color);
    color: white;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 5% 6rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-card.offset-layout {
    margin-left: 5%;
}

.service-detail-card.reverse-layout {
    flex-direction: row-reverse;
    margin-right: 5%;
}

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

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-light);
}

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

.services-benefits {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
}

.services-cta-section {
    padding: 5rem 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 5%;
}

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

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

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

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

.note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

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

.contact-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.contact-highlight {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-highlight p {
    color: var(--text-light);
    margin: 0;
}

.contact-alternative {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.alternative-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.alternative-methods {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.method-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

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

.method-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-faq {
    padding: 5rem 5%;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-dark);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.contact-cta {
    padding: 5rem 5%;
    text-align: center;
    background: var(--secondary-color);
    color: white;
}

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    margin-top: 80px;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-lead {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.selected-service-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.thanks-contact p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.legal-page {
    padding: 5rem 5% 3rem;
    margin-top: 80px;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

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

    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .problem-section.asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card {
        width: calc(50% - 1.5rem);
    }

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

    .why-item.large,
    .why-item.medium,
    .why-item.small {
        width: 100%;
    }

    .team-member.large-card,
    .team-member.medium-card,
    .team-member.small-card {
        width: calc(50% - 1.5rem);
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse-layout {
        flex-direction: column;
    }

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

    .alternative-methods {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }

    .story-block-asymmetric {
        flex-direction: column;
    }

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

    .value-card.offset-right,
    .value-card.offset-left {
        margin: 0;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        width: 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .insight-card-offset {
        margin-left: 0;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

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

    .team-member.large-card,
    .team-member.medium-card,
    .team-member.small-card {
        width: 100%;
    }

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

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

    .hero-lead {
        font-size: 1.1rem;
    }
}
