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

:root {
    --primary-color: #2d3e50;
    --secondary-color: #c7956d;
    --accent-color: #8b9d83;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --bg-dark: #2d3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 998;
    background: var(--bg-white);
    padding: 15px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

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

.hero-text-block {
    flex: 0 0 45%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-image-diagonal {
    flex: 0 0 55%;
    position: relative;
    transform: translateX(20px) rotate(-2deg);
}

.hero-image-diagonal img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-intro-offset {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.story-container {
    max-width: 900px;
    margin: 0 auto 0 10%;
}

.story-question h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 35px;
    line-height: 1.3;
}

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

.problem-visual-break {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    gap: 60px;
}

.visual-left {
    flex: 0 0 40%;
    background-color: var(--accent-color);
}

.visual-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.text-right-stack {
    flex: 0 0 55%;
}

.text-right-stack h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.text-right-stack p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.insight-diagonal-layout {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 100px 40px;
}

.insight-block-top {
    max-width: 800px;
    margin: 0 auto 60px 15%;
}

.insight-block-top h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--bg-white);
}

.insight-columns-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.insight-col-narrow {
    flex: 0 0 35%;
}

.insight-col-wide {
    flex: 0 0 60%;
    padding-top: 40px;
}

.insight-image-frame {
    background-color: var(--secondary-color);
}

.insight-image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transform: translate(15px, -15px);
}

.insight-text-stack {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.insight-point h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.insight-point p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.testimonial-offset-card {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.testimonial-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    transform: translateX(-60px);
}

.testimonial-image-side {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.testimonial-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    flex: 0 0 50%;
    padding: 40px;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: normal;
}

.benefits-scattered-layout {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.benefits-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px 20%;
}

.benefits-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.benefits-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-card-large {
    flex: 0 0 calc(55% - 15px);
}

.benefit-card-medium {
    flex: 0 0 calc(60% - 15px);
    transform: translateX(40%);
}

.benefit-card-small {
    flex: 0 0 calc(40% - 15px);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

.benefit-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-reveal-section {
    padding: 100px 40px;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.services-cards-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--bg-white);
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-frame {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-info {
    padding: 35px;
}

.service-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.service-select-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.cta-form-diagonal {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.form-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    background-color: var(--bg-light);
}

.form-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.form-container-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 10%;
    background-color: var(--bg-white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

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

.form-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

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

.form-group label {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    background-color: var(--bg-light);
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.form-submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-elements-scattered {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.trust-header {
    max-width: 1400px;
    margin: 0 auto 60px 15%;
}

.trust-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.trust-points-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-point {
    flex: 0 0 30%;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    border-radius: 50%;
}

.trust-point h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-point p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.final-cta-offset {
    padding: 100px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-link-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-link-button:hover {
    background-color: var(--accent-color);
}

.footer-asymmetric {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 40px 30px 40px;
}

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

.footer-col {
    flex: 0 0 22%;
}

.footer-col-brand {
    flex: 0 0 30%;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: rgba(255,255,255,0.05);
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-reject {
    background-color: #ddd;
    color: var(--text-dark);
}

.cookie-reject:hover {
    background-color: #ccc;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 120px 40px 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story-layout {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.about-image-left {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.about-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-text-right {
    flex: 0 0 50%;
    padding-top: 40px;
}

.about-text-right h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-section-offset {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.approach-header {
    max-width: 1400px;
    margin: 0 auto 60px 15%;
}

.approach-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.approach-blocks-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-block {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 40px;
}

.approach-block-image {
    background-color: transparent;
    padding: 0;
}

.approach-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.approach-block h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section-scattered {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section-scattered h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.values-diagonal {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.values-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px 20%;
}

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

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 30px;
    background-color: var(--bg-white);
}

.value-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

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

.about-cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: 35px;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

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

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

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

.services-detailed-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 48%;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content {
    flex: 0 0 48%;
}

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

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

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

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

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

.service-detail-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-order-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.services-process-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

.process-steps-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex: 0 0 23%;
    text-align: center;
}

.process-number {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border-radius: 50%;
}

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

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

.services-faq-offset {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-faq-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.faq-list-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 30px;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.services-cta-final {
    background-color: var(--primary-color);
    padding: 80px 40px;
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.15rem;
    transition: background-color 0.3s;
}

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

.hidden-form-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
}

.hidden-form-container.active {
    display: block;
}

.hidden-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
}

.hidden-form-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-white);
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.form-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

.form-close-btn:hover {
    color: var(--secondary-color);
}

.hidden-form-modal h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-layout-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 0 0 48%;
    padding-top: 40px;
}

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

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.contact-email {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
}

.contact-visual-block {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional-info {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.contact-additional-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.info-blocks-scattered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.info-block {
    flex: 0 0 45%;
    background-color: var(--bg-white);
    padding: 35px;
}

.info-block h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.info-block ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.info-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.thanks-page-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.thanks-content-centered {
    flex: 0 0 55%;
    padding: 60px 0;
}

.thanks-icon {
    width: 90px;
    height: 90px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    margin-bottom: 40px;
}

.selected-service-display {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.next-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.thanks-visual-aside {
    flex: 0 0 40%;
    background-color: var(--bg-light);
}

.thanks-visual-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page-layout {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 60px;
    line-height: 1.8;
}

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

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

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

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

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content ul li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.no-link {
    color: var(--text-dark);
    text-decoration: none;
}

@media (max-width: 1200px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .problem-visual-break {
        flex-direction: column;
    }

    .visual-left,
    .text-right-stack {
        flex: 0 0 100%;
    }

    .insight-columns-asymmetric {
        flex-direction: column;
    }

    .insight-col-narrow,
    .insight-col-wide {
        flex: 0 0 100%;
    }

    .testimonial-wrapper {
        flex-direction: column;
        transform: translateX(0);
    }

    .testimonial-image-side,
    .testimonial-content {
        flex: 0 0 100%;
    }

    .benefit-card-large,
    .benefit-card-medium,
    .benefit-card-small {
        flex: 0 0 100%;
        transform: translateX(0);
    }

    .services-cards-offset .service-card {
        flex: 0 0 100%;
    }

    .trust-points-asymmetric {
        flex-direction: column;
    }

    .trust-point {
        flex: 0 0 100%;
    }

    .footer-columns-offset {
        flex-wrap: wrap;
    }

    .footer-col,
    .footer-col-brand {
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        margin-top: 15px;
    }

    .hero-content-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-text-block {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-diagonal {
        flex: 0 0 100%;
        transform: none;
    }

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

    .story-container {
        margin: 0 auto;
    }

    .story-question h2 {
        font-size: 1.8rem;
    }

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

    .about-image-left,
    .about-text-right {
        flex: 0 0 100%;
    }

    .approach-blocks-asymmetric .approach-block {
        flex: 0 0 100%;
    }

    .values-list-asymmetric .value-item {
        flex: 0 0 100%;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

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

    .service-detail-image,
    .service-detail-content {
        flex: 0 0 100%;
    }

    .process-steps-asymmetric {
        flex-direction: column;
    }

    .process-step {
        flex: 0 0 100%;
    }

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

    .contact-info-block,
    .contact-visual-block {
        flex: 0 0 100%;
    }

    .info-blocks-scattered {
        flex-direction: column;
    }

    .info-block {
        flex: 0 0 100%;
    }

    .thanks-page-layout {
        flex-direction: column;
    }

    .thanks-content-centered,
    .thanks-visual-aside {
        flex: 0 0 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .footer-columns-offset {
        flex-direction: column;
    }

    .footer-col,
    .footer-col-brand {
        flex: 0 0 100%;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .form-container-offset {
        margin: 0 auto;
        padding: 35px 25px;
    }

    .hidden-form-modal {
        padding: 30px 20px;
    }
}
