/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

/* Ad Notice */
.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Asymmetric Floating */
.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 18px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a6c7d;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero - Asymmetric Layout */
.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 140px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.hero-content-offset {
    flex: 1;
    padding-right: 40px;
    transform: translateY(-30px);
}

.hero-content-offset h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.6;
}

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

.hero-visual-block img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Intro Section - Offset */
.intro-offset {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.intro-text-narrow {
    max-width: 700px;
}

.intro-text-narrow h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a2332;
    font-weight: 700;
}

.intro-text-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

/* Problem Section - Visual Left */
.problem-visual {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 80px;
    align-items: center;
}

.problem-image-left {
    flex: 1;
}

.problem-image-left img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.problem-text-right {
    flex: 1;
}

.problem-text-right h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

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

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Insight Section - Centered */
.insight-centered {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

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

.insight-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a2332;
}

.insight-content p {
    font-size: 20px;
    color: #4a5568;
}

/* Services Grid - Asymmetric */
.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f3f7;
}

.service-card-small {
    flex: 1 1 calc(40% - 15px);
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f3f7;
}

.service-card-offset {
    flex: 1 1 calc(55% - 15px);
    background: #3498db;
    color: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
    transform: translateY(-20px);
}

.service-card-offset h3,
.service-card-offset p,
.service-card-offset .service-price {
    color: #ffffff;
}

.service-card-medium {
    flex: 1 1 calc(45% - 15px);
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f3f7;
}

.service-card-wide {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.service-card-wide h3,
.service-card-wide p,
.service-card-wide .service-price {
    color: #ffffff;
}

.service-card-minimal {
    flex: 1 1 calc(33.33% - 20px);
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.service-card-large h3,
.service-card-small h3,
.service-card-medium h3,
.service-card-minimal h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a2332;
}

.service-card-offset h3,
.service-card-wide h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    margin: 25px 0;
    color: #3498db;
}

.service-card-offset .service-price,
.service-card-wide .service-price {
    color: #ffffff;
    opacity: 0.95;
}

.btn-select-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.service-card-offset .btn-select-service,
.service-card-wide .btn-select-service {
    background: #ffffff;
    color: #3498db;
}

.service-card-offset .btn-select-service:hover,
.service-card-wide .btn-select-service:hover {
    background: #f0f3f7;
    color: #2980b9;
}

/* Trust Element */
.trust-element {
    max-width: 1100px;
    margin: 80px auto;
    padding: 60px 80px;
    background: #f8f9fa;
    border-radius: 20px;
    border-left: 6px solid #3498db;
}

.trust-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.trust-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 15px;
}

/* Testimonials - Stacked Asymmetric */
.testimonials-stacked {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-left,
.testimonial-right,
.testimonial-center {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    font-size: 18px;
    font-style: italic;
    color: #4a5568;
}

.testimonial-left {
    max-width: 70%;
    margin-left: 0;
}

.testimonial-right {
    max-width: 70%;
    margin-left: auto;
}

.testimonial-center {
    max-width: 80%;
    margin: 0 auto;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

/* CTA Sticky Trigger */
.cta-sticky-trigger {
    padding: 100px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

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

.cta-content-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
}

/* Form Section - Asymmetric */
.form-section {
    max-width: 700px;
    margin: 100px auto 100px 15%;
    padding: 0 20px;
}

.contact-form-asymmetric {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-asymmetric h3 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1a2332;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Disclaimer Block */
.disclaimer-block {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background: #fff8e6;
    border-left: 4px solid #f39c12;
    border-radius: 10px;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.8;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background: #1a2332;
    color: #ffffff;
    padding: 80px 20px 30px;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
}

.footer-column-left {
    flex: 1 1 300px;
}

.footer-column-middle {
    flex: 1 1 200px;
}

.footer-column-right {
    flex: 1 1 250px;
}

.footer-asymmetric h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.footer-asymmetric a {
    color: #b8c5d6;
    transition: color 0.3s ease;
}

.footer-asymmetric a:hover {
    color: #3498db;
}

.footer-bottom {
    flex: 1 1 100%;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #8896a8;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.97);
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    backdrop-filter: blur(10px);
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #2980b9;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta-link {
    display: block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-link:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.5);
}

/* Page Hero - Offset */
.page-hero-offset {
    padding: 180px 20px 80px;
    max-width: 1200px;
    margin: 0 auto 0 10%;
}

.page-hero-offset h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 22px;
    color: #5a6c7d;
}

/* Story Section */
.story-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-text-wide {
    max-width: 900px;
}

.story-text-wide p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

/* Values - Asymmetric */
.values-asymmetric {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 30px;
}

.value-card-offset {
    flex: 1 1 calc(50% - 15px);
    background: #3498db;
    color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    transform: translateY(-30px);
}

.value-card-small {
    flex: 1 1 calc(50% - 15px);
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.value-card-wide {
    flex: 1 1 100%;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card-offset h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card-offset p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
}

.value-card-small h3,
.value-card-wide h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
}

.value-card-small p,
.value-card-wide p {
    font-size: 17px;
    color: #4a5568;
}

/* Team Intro */
.team-intro {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a2332;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
}

.team-description p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Approach Section */
.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.approach-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Mission Centered */
.mission-centered {
    text-align: center;
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a2332;
}

.mission-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Services Detail Section */
.services-detail-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f3f7;
}

.service-detail-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 32px;
    color: #1a2332;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 16px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
}

/* CTA Bottom Section */
.cta-bottom-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-bottom-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-bottom-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-cta-large {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #f0f3f7;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Info - Asymmetric */
.contact-info-asymmetric {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 40px;
}

.contact-block-large {
    flex: 1 1 60%;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-block-small {
    flex: 1 1 35%;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.contact-block-large h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a2332;
}

.contact-block-small h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a2332;
}

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

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.email-static {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    font-size: 15px;
    color: #6c757d;
    margin-top: 8px;
}

.contact-block-small p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
}

.contact-block-small ul {
    margin-left: 20px;
}

.contact-block-small li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Contact Map Section */
.contact-map-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 20px;
}

.contact-map-section h3 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a2332;
    text-align: center;
}

.contact-directions {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-item {
    flex: 1 1 250px;
    text-align: center;
}

.direction-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.direction-item p {
    font-size: 16px;
    color: #5a6c7d;
}

/* Contact FAQ */
.contact-faq {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-faq h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a2332;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    color: #4a5568;
}

/* Thanks Hero */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 80px;
}

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

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a2332;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-service-info {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 18px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
}

.thanks-next-steps h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-next-steps ol {
    margin-left: 20px;
}

.thanks-next-steps li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #4a5568;
    padding-left: 10px;
}

.thanks-contact-info {
    margin: 40px 0;
}

.thanks-contact-info p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 10px;
}

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

.btn-primary {
    background: #3498db;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 14px 33px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

/* Legal Page */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 180px 20px 80px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a2332;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 20px 60px;
    }

    .hero-content-offset {
        transform: translateY(0);
        padding-right: 0;
    }

    .hero-content-offset h1 {
        font-size: 40px;
    }

    .hero-visual-block img {
        transform: rotate(0);
    }

    .intro-offset {
        margin: 0 auto;
        padding: 60px 20px;
    }

    .problem-visual {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-card-large,
    .service-card-small,
    .service-card-offset,
    .service-card-medium,
    .service-card-minimal {
        flex: 1 1 100%;
        transform: translateY(0);
    }

    .form-section {
        margin: 60px auto;
    }

    .contact-form-asymmetric {
        padding: 35px 25px;
    }

    .testimonials-stacked .testimonial-left,
    .testimonials-stacked .testimonial-right,
    .testimonials-stacked .testimonial-center {
        max-width: 100%;
        margin: 0;
    }

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

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

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

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

    .page-hero-offset {
        margin: 0 auto;
        padding: 140px 20px 60px;
    }

    .page-hero-offset h1 {
        font-size: 36px;
    }

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

    .value-card-offset,
    .value-card-small,
    .value-card-wide {
        flex: 1 1 100%;
        transform: translateY(0);
    }

    .approach-section {
        flex-direction: column;
    }

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

    .contact-block-large,
    .contact-block-small {
        flex: 1 1 100%;
    }

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

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