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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --success-color: #28a745;
    --border-color: #dfe6e9;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    right: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    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);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-offset-block {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 50px 60px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3c72 100%);
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
    z-index: 2;
}

.hero-text-layer {
    max-width: 580px;
    color: white;
}

.hero-text-layer h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image-layer {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

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

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

.trust-strip {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background: var(--bg-light);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.problem-section {
    display: flex;
    padding: 90px 60px;
    gap: 60px;
    align-items: center;
}

.offset-left {
    padding-left: 120px;
}

.problem-visual {
    flex: 0 0 45%;
    transform: rotate(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-visual img {
    border-radius: 12px;
}

.problem-content {
    flex: 1;
}

.problem-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 32px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #c0392b;
    transform: translateX(5px);
}

.insight-block {
    padding: 80px 0;
    background: #f8f9fa;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
    padding: 0 50px;
}

.insight-card {
    flex: 1;
    background: white;
    padding: 50px;
    border-left: 6px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 1.9rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.insight-visual-right {
    flex: 0 0 40%;
}

.insight-visual-right img {
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.services-showcase {
    padding: 100px 60px;
    background: white;
}

.section-heading-offset {
    font-size: 2.8rem;
    margin-bottom: 60px;
    padding-left: 40px;
    border-left: 8px solid var(--primary-color);
    color: var(--text-dark);
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-select-service {
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1e3c72;
    transform: scale(1.03);
}

.testimonials-scattered {
    padding: 90px 60px;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.testimonials-scattered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 35px 45px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.offset-1 {
    align-self: flex-start;
    margin-left: 5%;
}

.offset-2 {
    align-self: flex-end;
    margin-right: 8%;
}

.offset-3 {
    align-self: flex-start;
    margin-left: 15%;
}

.why-us-section {
    padding: 90px 60px;
    background: var(--bg-light);
}

.irregular-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.why-block-1,
.why-block-2,
.why-block-3 {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.why-block-1 {
    flex: 0 0 calc(55% - 18px);
}

.why-block-2 {
    flex: 0 0 calc(45% - 18px);
}

.why-block-3 {
    flex: 0 0 calc(40% - 18px);
}

.why-visual {
    flex: 0 0 calc(60% - 18px);
}

.why-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.irregular-layout h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.form-section-asymmetric {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-intro-side {
    flex: 0 0 40%;
    color: white;
}

.form-intro-side h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.form-intro-side p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.form-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-container {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.4);
}

.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.final-cta-sticky.visible {
    transform: translateY(0);
}

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

.sticky-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 35px;
    background: white;
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px 30px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

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

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

.btn-reject {
    background: #6c757d;
    color: white;
}

.btn-reject:hover {
    background: #5a6268;
}

.page-hero-offset {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-text-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.about-story {
    padding: 90px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.story-visual {
    flex: 0 0 40%;
}

.story-visual img {
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.values-section {
    padding: 90px 60px;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    flex: 0 0 calc(50% - 15px);
}

.value-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section-asymmetric {
    padding: 90px 60px;
    background: white;
}

.team-section-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
}

.team-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 0 calc(33.333% - 27px);
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.cta-about-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    text-align: center;
    color: white;
}

.cta-about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--accent-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.page-hero-services {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    text-align: center;
}

.page-hero-services h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.service-detail-visual {
    flex: 0 0 40%;
}

.service-detail-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.3;
}

.service-pricing-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.guarantee-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3c72 100%);
    text-align: center;
    color: white;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #e67e22;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

.contact-hero {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-info-section {
    padding: 90px 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.contact-card.primary {
    flex: 0 0 calc(50% - 15px);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3c72 100%);
    color: white;
}

.contact-card.secondary {
    flex: 0 0 calc(50% - 15px);
}

.contact-card.tertiary {
    flex: 0 0 100%;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card.primary h3 {
    color: var(--accent-color);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-note {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
}

.process-list {
    list-style: decimal;
    padding-left: 25px;
}

.process-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.map-placeholder-section {
    padding: 60px 40px;
    background: var(--bg-light);
}

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

.map-placeholder {
    height: 400px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-cta-section {
    padding: 80px 60px;
    background: var(--accent-color);
    text-align: center;
    color: white;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-info {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
}

.thanks-next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

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

.thanks-next-steps ol {
    list-style: decimal;
    padding-left: 25px;
}

.thanks-next-steps li {
    padding: 10px 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
}

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

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

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

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

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

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-offset-block {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

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

    .hero-image-layer {
        position: relative;
        width: 100%;
        height: 400px;
    }

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

    .problem-section {
        flex-direction: column;
        padding-left: 60px;
    }

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

    .team-member {
        flex: 0 0 calc(50% - 20px);
    }

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

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

    .contact-card.primary,
    .contact-card.secondary {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        right: 15px;
        left: 15px;
        padding: 12px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

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

    .trust-strip {
        flex-direction: column;
        gap: 30px;
    }

    .problem-section {
        padding: 60px 30px;
        padding-left: 30px;
    }

    .section-heading-offset {
        font-size: 2rem;
        padding-left: 20px;
    }

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

    .form-section-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .form-intro-side {
        flex: 0 0 100%;
    }

    .form-container {
        padding: 30px;
    }

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .page-hero-offset,
    .page-hero-services,
    .contact-hero {
        padding: 120px 30px 60px;
    }

    .hero-text-content h1,
    .page-hero-services h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .team-member {
        flex: 0 0 100%;
    }

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

    .why-block-1,
    .why-block-2,
    .why-block-3,
    .why-visual {
        flex: 0 0 100%;
    }

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

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