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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --dark-bg: #0f2537;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e1e8ed;
    --white: #ffffff;
    --error-color: #e74c3c;
    --success-color: #2ecc71;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.nav-floating {
    position: fixed;
    top: 20px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

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

.hero-offset {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.hero-text-block {
    flex: 1 1 550px;
    max-width: 600px;
    padding-right: 3rem;
    margin-left: 8%;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual-offset {
    flex: 1 1 400px;
    margin-top: -50px;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

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

.intro-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1 1 400px;
    max-width: 500px;
    margin-left: 15%;
    margin-top: 2rem;
}

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

.intro-wide-card {
    flex: 1 1 500px;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1 1 200px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transform: rotate(-2deg);
}

.stat-card:nth-child(2) {
    transform: rotate(2deg);
    margin-top: 3rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.problem-layer {
    padding: 6rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-content-offset {
    flex: 1 1 500px;
    max-width: 550px;
    margin-right: 5%;
}

.problem-content-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.problem-visual-card {
    flex: 1 1 400px;
    position: relative;
    margin-left: -50px;
}

.problem-visual-card img {
    border-radius: 20px;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.inline-cta {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #143d5f;
    transform: translateY(-2px);
}

.trust-blocks {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f0f5 100%);
}

.trust-header-offset {
    max-width: 600px;
    margin-left: 20%;
    margin-bottom: 3rem;
}

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

.trust-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    flex: 1 1 250px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-card-1 {
    margin-left: 5%;
}

.trust-card-2 {
    margin-top: 3rem;
}

.trust-card-3 {
    margin-left: -20px;
    margin-top: 1.5rem;
}

.trust-card-4 {
    margin-top: 4rem;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trust-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.services-highlight {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.services-intro-text {
    max-width: 700px;
    text-align: left;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.services-intro-text h2 {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-block {
    flex: 1 1 350px;
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: var(--secondary-color);
    transform: scale(1.03);
}

.service-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563a0 100%);
    color: var(--white);
    transform: scale(1.05);
    margin-top: -20px;
}

.service-featured h3,
.service-featured p {
    color: var(--white);
}

.service-offset {
    margin-left: 3%;
    margin-top: -30px;
}

.service-alt {
    margin-top: 40px;
    margin-right: 5%;
}

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

.service-featured h3 {
    color: var(--white);
}

.service-block p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-featured .price {
    color: var(--white);
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

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

.services-cta-bottom {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-bottom p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.testimonial-layer {
    padding: 5rem 2rem;
    background-color: var(--dark-bg);
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-offset {
    flex: 1 1 400px;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
}

.testimonial-offset blockquote {
    margin: 0;
}

.testimonial-offset p {
    color: var(--white);
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-offset cite {
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
}

.testimonial-alt {
    margin-top: 4rem;
    margin-left: 5%;
}

.urgency-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    text-align: center;
}

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

.urgency-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-urgent {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--white);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.faq-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.faq-asymmetric h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    margin-left: 10%;
}

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

.faq-item {
    flex: 1 1 300px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-offset {
    margin-top: 3rem;
    margin-left: 2%;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

.form-section-overlay {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f0f5 0%, var(--light-bg) 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 15%;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-container-asymmetric h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 122, 0.1);
}

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

.form-group small {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-group small a {
    text-decoration: underline;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    flex: 1;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-submit {
    padding: 1.2rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-block {
    flex: 1 1 250px;
}

.footer-block h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-block p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-block ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-block a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-block a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #d35400;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.5);
}

.about-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563a0 100%);
    text-align: left;
}

.about-hero-content {
    max-width: 800px;
    margin-left: 10%;
}

.about-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
}

.about-story {
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block {
    flex: 1 1 500px;
    max-width: 600px;
}

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

.story-image {
    flex: 1 1 400px;
}

.story-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.values-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-card {
    flex: 1 1 250px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-offset {
    margin-top: 3rem;
}

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

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

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    margin-left: 10%;
}

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

.expertise-item {
    flex: 1 1 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563a0 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
}

.expertise-offset {
    margin-top: 2rem;
    margin-left: 3%;
}

.expertise-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.expertise-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mission-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

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

.mission-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.stats-section {
    padding: 5rem 2rem;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.stats-display {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.stat-box {
    flex: 1 1 250px;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 15px;
    border: 3px solid var(--secondary-color);
}

.stat-box.stat-offset {
    margin-top: 2rem;
}

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563a0 100%);
    text-align: center;
}

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

.cta-about p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #e8f0f5 0%, var(--light-bg) 100%);
    text-align: center;
}

.services-hero h1 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.services-overview {
    padding: 4rem 2rem;
}

.overview-text {
    max-width: 800px;
    margin: 0 auto;
}

.overview-text h2 {
    color: var(--primary-color);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.services-detailed {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail-block {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-detail-block:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-block.service-alt {
    margin-left: 8%;
}

.service-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563a0 100%);
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.8rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-body {
    padding: 2rem;
}

.service-body h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-body ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.services-comparison {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.services-comparison h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.comparison-card {
    flex: 1 1 250px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.comparison-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.recommendation {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.services-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.services-cta h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563a0 100%);
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-main {
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

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

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

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-visual {
    flex: 1 1 400px;
}

.contact-visual img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-how {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.contact-how h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.method-card {
    flex: 1 1 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.method-offset {
    margin-top: 2rem;
}

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

.method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.contact-faq h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-contact-item {
    flex: 1 1 250px;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.faq-contact-item h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-contact-item p {
    color: var(--text-dark);
    margin: 0;
}

.contact-map-placeholder {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.contact-map-placeholder h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.map-info p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    text-align: center;
}

.contact-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #229954 100%);
}

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

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

.thanks-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
}

.thanks-details {
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.thanks-info {
    flex: 1 1 600px;
}

.thanks-info h2 {
    color: var(--primary-color);
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.thanks-service {
    flex: 1 1 300px;
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.thanks-service h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-important {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.thanks-important h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.important-card {
    flex: 1 1 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.important-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.important-card p {
    color: var(--text-dark);
    margin: 0;
}

.thanks-contact {
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-contact h2 {
    color: var(--primary-color);
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.thanks-contact p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.3rem;
    font-weight: 600;
}

.thanks-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thanks-nav {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.thanks-nav h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.thanks-link-card {
    flex: 1 1 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.thanks-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.thanks-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.thanks-link-card p {
    color: var(--text-light);
    margin: 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    line-height: 1.6;
}

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

@media (max-width: 1024px) {
    .nav-floating {
        right: 20px;
        top: 15px;
        padding: 0.75rem 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-text-block {
        margin-left: 5%;
    }

    .intro-narrow {
        margin-left: 10%;
    }

    .trust-header-offset {
        margin-left: 10%;
    }

    .services-intro-text {
        margin-left: 5%;
    }

    .form-container-asymmetric {
        margin-left: 10%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-floating {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 1rem;
        border-radius: 15px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-offset {
        flex-direction: column;
        padding: 5rem 1.5rem 3rem;
    }

    .hero-text-block {
        margin-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

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

    .hero-visual-offset {
        margin-top: 2rem;
        width: 100%;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-narrow {
        margin-left: 0;
        margin-top: 0;
    }

    .problem-layer {
        flex-direction: column;
    }

    .problem-content-offset {
        margin-right: 0;
        max-width: 100%;
    }

    .problem-visual-card {
        margin-left: 0;
    }

    .trust-header-offset {
        margin-left: 0;
    }

    .trust-card-1 {
        margin-left: 0;
    }

    .trust-card-2,
    .trust-card-3,
    .trust-card-4 {
        margin-top: 0;
        margin-left: 0;
    }

    .services-intro-text {
        margin-left: 0;
    }

    .service-offset,
    .service-alt {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

    .service-featured {
        margin-top: 0;
    }

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

    .testimonial-alt {
        margin-top: 0;
        margin-left: 0;
    }

    .faq-asymmetric h2 {
        margin-left: 0;
    }

    .faq-offset {
        margin-top: 0;
        margin-left: 0;
    }

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

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

    .sticky-cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .about-hero-content {
        margin-left: 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-story {
        flex-direction: column;
        gap: 2rem;
    }

    .team-section h2 {
        margin-left: 0;
    }

    .expertise-offset {
        margin-top: 0;
        margin-left: 0;
    }

    .stat-box.stat-offset {
        margin-top: 0;
    }

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

    .method-offset {
        margin-top: 0;
    }

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

    .service-detail-block.service-alt {
        margin-left: 0;
    }
}

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

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

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-primary,
    .btn-secondary,
    .btn-submit {
        width: 100%;
        text-align: center;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

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