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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    backdrop-filter: blur(10px);
}

.nav-brand a {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section - Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 40px 80px;
}

.hero-visual-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-overlay-label {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(231, 76, 60, 0.9);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.hero-content-offset {
    max-width: 600px;
    position: relative;
    z-index: 10;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-left: 5%;
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content-offset p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2c3e50;
    color: #ffffff;
}

/* Container Asymmetric */
.container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Intro Statement Section */
.intro-statement {
    padding: 100px 40px;
    background: #f8f9fa;
    position: relative;
}

.intro-statement .container-asymmetric {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.statement-block {
    flex: 1;
    padding-right: 40px;
}

.statement-block h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.statement-block p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.stats-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 300px;
}

.stat-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-item strong {
    display: block;
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 15px;
    color: #5a6c7d;
}

/* Services Preview Grid */
.services-preview-grid {
    padding: 120px 40px;
}

.section-header-irregular {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.section-header-irregular h2 {
    font-size: 42px;
    color: #2c3e50;
}

.link-arrow {
    color: #e74c3c;
    font-weight: 600;
    font-size: 16px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-cards-staggered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 80px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-badge {
    display: inline-block;
    background: #e8f8f5;
    color: #27ae60;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Trust Block Irregular */
.trust-block-irregular {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.trust-image-side {
    flex: 1;
    overflow: hidden;
}

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

.trust-content-side {
    flex: 1;
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content-side h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.features-list-organic {
    margin-bottom: 40px;
}

.features-list-organic li {
    font-size: 17px;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.features-list-organic li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

/* Testimonials Layer */
.testimonials-layer {
    padding: 100px 40px;
    background: #f8f9fa;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.testimonials-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card:nth-child(2) {
    transform: translateY(30px);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #95a5a6;
}

/* Process Asymmetric */
.process-asymmetric {
    padding: 120px 40px;
}

.process-header-offset {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.process-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
}

.process-steps-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
}

.step-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-1 {
    margin-top: 0;
}

.step-2 {
    margin-top: 40px;
}

.step-3 {
    margin-top: 80px;
}

.step-4 {
    margin-top: 120px;
}

.step-number {
    font-size: 56px;
    font-weight: 800;
    color: #e74c3c;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.step-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
}

.step-block p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* CTA Section Split */
.cta-section-split {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.cta-visual-half {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.cta-visual-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    color: #ffffff;
    text-align: center;
}

.cta-visual-overlay h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-visual-overlay p {
    font-size: 18px;
    max-width: 500px;
}

.cta-form-half {
    flex: 1;
    background: #ffffff;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.request-form {
    width: 100%;
    max-width: 500px;
}

.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 #e0e6ed;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* FAQ Irregular */
.faq-irregular {
    padding: 100px 40px;
    background: #f8f9fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.faq-items-offset {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item:nth-child(even) {
    margin-left: 60px;
}

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

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 40px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-brand-col {
    flex: 1.5;
    max-width: 350px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
}

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

.sticky-cta-btn {
    display: block;
    padding: 18px 35px;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

/* Services Page Styles */
.page-hero-offset {
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content-irregular {
    flex: 1;
    max-width: 600px;
}

.hero-content-irregular h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content-irregular p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.hero-image-irregular {
    flex: 1;
    max-width: 500px;
}

.hero-image-irregular img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-detailed {
    padding: 80px 40px;
}

.services-detailed:nth-child(even) {
    background: #f8f9fa;
}

.service-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.service-image-block {
    flex: 1;
    max-width: 550px;
}

.service-image-block img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.service-content-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-content-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-problems-list {
    margin-bottom: 35px;
}

.service-problems-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-problems-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.service-pricing-block {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.price-main {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 5px;
}

.price-description {
    font-size: 14px;
    color: #5a6c7d;
}

.btn-service-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.service-guarantees {
    padding: 100px 40px;
    background: #2c3e50;
    color: #ffffff;
}

.guarantees-header {
    text-align: center;
    margin-bottom: 60px;
}

.guarantees-header h2 {
    font-size: 42px;
}

.guarantees-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.guarantee-card p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.7;
}

.cta-bottom-irregular {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 40px;
}

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

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* About Page Styles */
.about-hero-irregular {
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story-asymmetric {
    padding: 100px 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-image-offset {
    flex: 1;
    max-width: 550px;
}

.story-image-offset img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-content-block {
    flex: 1;
}

.story-content-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section-irregular {
    padding: 100px 40px;
    background: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.values-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card:nth-child(2),
.value-card:nth-child(4) {
    margin-top: 40px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-approach-split {
    display: flex;
    align-items: center;
    min-height: 700px;
}

.approach-content-side {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.approach-content-side h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-content-side > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.8;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.approach-step p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-image-side {
    flex: 1;
    height: 100%;
}

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

.numbers-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.numbers-header {
    text-align: center;
    margin-bottom: 60px;
}

.numbers-header h2 {
    font-size: 42px;
}

.numbers-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.number-block {
    min-width: 250px;
    text-align: center;
    padding: 40px;
}

.number-block:nth-child(2),
.number-block:nth-child(4) {
    margin-top: 40px;
}

.number-value {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.number-label {
    font-size: 16px;
    opacity: 0.9;
}

.certifications-irregular {
    padding: 100px 40px;
}

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

.cert-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.cert-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-about-irregular {
    padding: 100px 40px;
    background: #2c3e50;
    color: #ffffff;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Contact Page Styles */
.contact-hero-offset {
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 18px;
}

.contact-info-asymmetric {
    padding: 100px 40px;
}

.contact-cards-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-primary {
    background: #e74c3c;
    color: #ffffff;
    transform: translateY(-20px);
}

.card-secondary {
    background: #ffffff;
    border: 2px solid #e0e6ed;
}

.card-tertiary {
    background: #f8f9fa;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-card a {
    color: inherit;
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
}

.contact-cta-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.contact-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-cta-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.faq-contact-irregular {
    padding: 100px 40px;
}

.faq-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-contact-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.faq-contact-items {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-contact-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-contact-item:nth-child(even) {
    margin-left: 60px;
}

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

.faq-contact-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.map-placeholder-section {
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 60px;
    border-radius: 15px;
    text-align: center;
}

.map-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.map-overlay p {
    font-size: 16px;
    color: #5a6c7d;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.thanks-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.thanks-content-centered h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
}

.thanks-info-section {
    padding: 100px 40px;
}

.thanks-info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-info-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.thanks-step {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.thanks-step p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-cta-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.thanks-cta-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-cta-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

/* Legal Pages Styles */
.legal-hero {
    padding: 180px 40px 80px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 16px;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 40px;
}

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

.legal-container h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #e74c3c;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #c0392b;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #95a5a6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e6ed;
}

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

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        padding: 15px 25px;
        gap: 20px;
        width: calc(100% - 40px);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

    .hero-visual-block {
        position: relative;
        width: 100%;
        height: 300px;
        order: -1;
    }

    .hero-content-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

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

    .intro-statement .container-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .statement-block {
        padding-right: 0;
    }

    .statement-block h2 {
        font-size: 32px;
    }

    .services-cards-staggered {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        margin-top: 0;
    }

    .trust-block-irregular {
        flex-direction: column;
    }

    .trust-content-side {
        padding: 60px 30px;
    }

    .testimonials-grid-offset {
        flex-direction: column;
    }

    .testimonial-card:nth-child(2) {
        transform: none;
    }

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

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        margin-top: 0;
    }

    .cta-section-split {
        flex-direction: column;
    }

    .cta-visual-half {
        min-height: 400px;
    }

    .cta-form-half {
        padding: 60px 30px;
    }

    .faq-item:nth-child(even) {
        margin-left: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .service-detail-asymmetric,
    .service-detail-asymmetric.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .about-story-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .value-card:nth-child(2),
    .value-card:nth-child(4) {
        margin-top: 0;
    }

    .team-approach-split {
        flex-direction: column;
    }

    .number-block:nth-child(2),
    .number-block:nth-child(4) {
        margin-top: 0;
    }

    .contact-cards-irregular {
        flex-direction: column;
    }

    .card-primary {
        transform: none;
    }

    .faq-contact-item:nth-child(even) {
        margin-left: 0;
    }
}
