/* 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.7;
    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, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container Utilities */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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: 20px;
}

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

.cookie-content a {
    color: #81c784;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #66bb6a;
    color: #fff;
}

.btn-accept:hover {
    background: #57a95b;
}

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

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

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2e7d32;
    white-space: nowrap;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #2e7d32;
}

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

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

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

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

/* Hero Section - Asymmetric Layout */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    padding-right: 40px;
    transform: translateX(-30px);
}

.hero-title-large {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #2e7d32;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.hero-visual-element {
    flex: 1;
    transform: translateY(30px) rotate(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.hero-visual-element img {
    width: 100%;
    object-fit: cover;
}

/* Intro Overlap Section */
.intro-overlap {
    margin-top: -80px;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}

.intro-card {
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    transform: rotate(-1deg);
}

.intro-card h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Services Preview - Offset Asymmetric */
.services-preview-offset {
    padding: 100px 20px;
    background: #fff;
}

.services-left-block {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 40px;
}

.section-title-offset {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-title-offset::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #2e7d32;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

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

.link-arrow:hover {
    color: #1b5e20;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
}

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

.service-card-1 {
    transform: rotate(-2deg);
}

.service-card-2 {
    transform: translateY(40px) rotate(1deg);
}

.service-card-3 {
    transform: translateY(20px) rotate(-1deg);
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
}

.price-tag {
    margin: 0 25px 25px;
    padding: 10px 20px;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 700;
    border-radius: 6px;
    display: inline-block;
}

/* Visual Break Section */
.visual-break {
    padding: 0;
    margin: 80px 0;
}

.image-overlay-block {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.overlay-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.overlay-text blockquote {
    font-size: 22px;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    font-weight: 500;
}

/* Approach Section */
.approach-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
}

.approach-offset-1 {
    transform: translateY(-20px);
}

.approach-offset-2 {
    transform: translateY(20px);
}

.approach-offset-3 {
    transform: translateY(-30px);
}

.approach-offset-4 {
    transform: translateY(10px);
}

.approach-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #e8f5e9;
    margin-bottom: 20px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-item p {
    color: #666;
    line-height: 1.7;
}

/* Testimonial Split */
.testimonial-split {
    padding: 80px 20px;
    background: #fff;
}

.testimonial-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.testimonial-text {
    flex: 1.2;
    transform: translateX(-40px);
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: #2e7d32;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    transform: rotate(-3deg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

/* Benefits Asymmetric */
.benefits-asymmetric {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.benefits-header-offset {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding-left: 40px;
}

.benefits-header-offset h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-large, .benefit-medium, .benefit-small {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 300px;
    transform: rotate(-1deg);
}

.benefit-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    transform: translateY(30px);
}

.benefit-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 260px;
    transform: rotate(2deg);
}

.benefit-large h3,
.benefit-medium h3,
.benefit-small h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-large p,
.benefit-medium p,
.benefit-small p {
    line-height: 1.7;
    opacity: 0.95;
}

/* CTA Diagonal Form Section */
.cta-diagonal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: relative;
    z-index: 2;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
}

.form-container-offset h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.form-intro {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.form-checkbox label {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.form-checkbox a {
    color: #2e7d32;
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 40px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Portfolio Glimpse */
.portfolio-glimpse {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-title-center {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: #1a1a1a;
}

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

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 300px;
    transform: rotate(-1deg);
}

.portfolio-medium {
    flex: 1 1 calc(45% - 15px);
    min-width: 280px;
    transform: translateY(40px) rotate(1deg);
}

.portfolio-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 260px;
    transform: rotate(2deg);
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px;
    color: #fff;
}

.portfolio-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer Offset */
.footer-offset {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px 30px;
    transform: skewY(-2deg);
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    transform: skewY(2deg);
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #66bb6a;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    color: #bbb;
    font-size: 14px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #66bb6a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    transform: skewY(2deg);
}

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

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

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

.sticky-cta-button {
    display: block;
    padding: 18px 35px;
    background: #2e7d32;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Services Page Styles */
.page-header-offset {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

.page-header-offset h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
    background: #fff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-image-block {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.service-info-block h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

.price-range {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-value {
    display: block;
    font-size: 32px;
    color: #2e7d32;
    font-weight: 800;
    margin-bottom: 10px;
}

.price-note {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background: #2e7d32;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.process-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    bottom: -50px;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 45px;
    height: 45px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

.cta-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    text-align: center;
    color: #fff;
}

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

.cta-content-centered h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 20px;
    font-weight: 800;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #2e7d32;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* About Page Styles */
.about-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    opacity: 0.95;
}

.story-section {
    padding: 100px 20px;
    background: #fff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.philosophy-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
}

.philosophy-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2e7d32;
    font-weight: 700;
}

.philosophy-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background: #fff;
}

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

.team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-large {
    flex: 1 1 calc(60% - 20px);
    min-width: 300px;
}

.team-medium {
    flex: 1 1 calc(40% - 20px);
    min-width: 280px;
}

.team-small {
    flex: 1 1 calc(33% - 27px);
    min-width: 260px;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-role {
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.values-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.values-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.value-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-offset-1 {
    transform: translateY(-20px);
}

.value-offset-2 {
    transform: translateY(20px);
}

.value-offset-3 {
    transform: translateY(10px);
}

.value-offset-4 {
    transform: translateY(-15px);
}

.value-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-block p {
    color: #666;
    line-height: 1.7;
}

.certifications-section {
    padding: 80px 20px;
    background: #fff;
}

.certifications-list {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cert-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2e7d32;
}

.cert-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.cert-item p {
    color: #666;
    line-height: 1.6;
}

.testimonials-about {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.cta-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    text-align: center;
    color: #fff;
}

.cta-content-offset {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-offset h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 20px;
    font-weight: 800;
}

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

/* Contact Page Styles */
.contact-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    opacity: 0.95;
}

.contact-main {
    padding: 100px 20px;
    background: #fff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2e7d32;
    font-weight: 700;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.contact-detail a {
    color: #2e7d32;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 500px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.faq-list {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.cta-contact {
    padding: 80px 20px;
    background: #fff;
}

.cta-box-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    transform: rotate(-1deg);
}

.cta-box-asymmetric h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-box-asymmetric p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-box-asymmetric a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

/* Thanks Page Styles */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
    color: #fff;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 16px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #2e7d32;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.next-steps {
    padding: 80px 20px;
    background: #fff;
}

.steps-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
}

.step-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2e7d32;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.while-waiting {
    padding: 80px 20px;
    background: #f8f9fa;
}

.suggestions-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
}

.suggestion-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.suggestion-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.suggestion-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-info-thanks {
    padding: 80px 20px;
    background: #fff;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
}

.contact-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-box a {
    color: #2e7d32;
    font-weight: 700;
}

.contact-hours {
    font-size: 14px;
    color: #888;
}

/* Legal Pages Styles */
.legal-page {
    padding: 140px 20px 80px;
    background: #fff;
}

.legal-page h1 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 800;
}

.update-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 40px 0 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #2e7d32;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
}

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

.legal-content li {
    margin-bottom: 10px;
    color: #555;
    list-style: disc;
}

.legal-content a {
    color: #2e7d32;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1b5e20;
}

.legal-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.gdpr-table th,
.cookie-table th {
    background: #f8f9fa;
    color: #1a1a1a;
    font-weight: 700;
}

.gdpr-table td,
.cookie-table td {
    color: #555;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .nav-floating {
        top: 20px;
        padding: 12px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        display: none;
        border-radius: 15px;
        margin: 0 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block {
        transform: none;
        padding-right: 0;
    }

    .hero-visual-element {
        transform: none;
    }

    .testimonial-content,
    .story-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .testimonial-text {
        transform: none;
    }

    .story-image {
        transform: none;
    }

    .service-layout-2 {
        flex-direction: column;
    }

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

    .overlay-text {
        position: static;
        transform: none;
        margin: 20px;
    }

    .image-overlay-block {
        height: auto;
    }
}

@media (max-width: 640px) {
    .intro-card {
        padding: 40px 30px;
        transform: none;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3 {
        transform: none;
    }

    .form-container-offset {
        padding: 40px 25px;
        transform: none;
    }

    .portfolio-large,
    .portfolio-medium,
    .portfolio-small {
        transform: none;
    }

    .cta-box-asymmetric {
        padding: 40px 25px;
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
    }
}