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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #52b788;
    --dark-bg: #0f1419;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-offset-left {
    flex: 1.2;
    padding-right: 3rem;
    transform: translateY(-30px);
}

.hero-offset-right {
    flex: 0.8;
    transform: translateY(50px) translateX(20px);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--accent-color);
}

.hero-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.4);
}

.intro-block {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.services-preview-asymmetric {
    padding: 6rem 5%;
    background: var(--white);
}

.services-grid-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card-tilt {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-tilt:nth-child(1) {
    transform: translateY(30px);
}

.service-card-tilt:nth-child(2) {
    transform: translateY(-20px);
}

.service-card-tilt:nth-child(3) {
    transform: translateY(15px);
}

.service-card-tilt:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card-tilt p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-inline {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 500;
}

.cta-inline:hover {
    background: var(--secondary-color);
}

.philosophy-split {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--light-bg);
}

.split-content-left {
    flex: 1;
    transform: translateX(-30px);
}

.split-content-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-content-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.split-image-right {
    flex: 1;
    transform: translateX(30px) translateY(20px);
}

.split-image-right img {
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.stats-overlay {
    padding: 5rem 5%;
    position: relative;
    background: var(--dark-bg);
    color: var(--white);
}

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

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-cascade {
    padding: 6rem 5%;
    background: var(--white);
}

.section-title-offset {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    transform: translateX(50px);
}

.testimonials-stacked {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-left {
    transform: translateX(-40px);
    max-width: 70%;
}

.testimonial-right {
    transform: translateX(calc(30% + 40px));
    max-width: 70%;
}

.testimonial-center {
    transform: translateX(15%);
    max-width: 70%;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.process-diagonal {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

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

.step-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-1 {
    transform: translateY(0);
}

.step-2 {
    transform: translateY(30px);
}

.step-3 {
    transform: translateY(60px);
}

.step-4 {
    transform: translateY(90px);
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.step-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.additional-services-grid {
    padding: 6rem 5%;
    background: var(--white);
}

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

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

.service-mini {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-top: 3px solid var(--accent-color);
}

.service-mini h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-mini p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-mini {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-section-split {
    padding: 6rem 5%;
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--light-bg);
}

.cta-visual {
    flex: 1;
}

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

.cta-visual p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-visual img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-badges {
    padding: 3rem 5%;
    text-align: center;
    background: var(--white);
}

.trust-text {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(82, 183, 136, 0.4);
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.about-hero {
    padding: 8rem 5% 4rem;
    background: var(--light-bg);
    text-align: center;
}

.about-header-offset {
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(-20px);
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-section {
    padding: 6rem 5%;
    background: var(--white);
}

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

.story-content-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.values-asymmetric {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

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

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.value-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 5%;
    background: var(--white);
}

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

.team-layout-staggered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.team-left {
    transform: translateY(30px);
}

.team-right {
    transform: translateY(-30px);
}

.team-center {
    transform: translateY(0);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.role {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.mission-split {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--light-bg);
}

.mission-image {
    flex: 1;
    transform: translateX(-30px);
}

.mission-image img {
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-text {
    flex: 1;
    transform: translateX(30px);
}

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

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
}

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

.cta-about {
    padding: 6rem 5%;
    text-align: center;
    background: var(--white);
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.services-hero {
    padding: 8rem 5% 4rem;
    background: var(--light-bg);
    text-align: center;
}

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

.services-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-asymmetric {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--white);
}

.service-detail-asymmetric.service-reverse {
    background: var(--light-bg);
    flex-direction: row-reverse;
}

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

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.btn-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
}

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

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

.service-left {
    transform: translateX(-30px);
}

.service-right {
    transform: translateX(30px);
}

.service-detail-image img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.additional-services-section {
    padding: 6rem 5%;
    background: var(--white);
}

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

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

.additional-service-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.additional-service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.cta-link {
    color: var(--accent-color);
    font-weight: 600;
}

.cta-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.pricing-comparison {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

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

.comparison-column {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.featured-package {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: scale(1.05);
}

.featured-package h3,
.featured-package .package-price,
.featured-package .package-features li {
    color: var(--white);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.btn-package {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
}

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

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

.featured-package .btn-package:hover {
    background: var(--light-bg);
}

.faq-section {
    padding: 6rem 5%;
    background: var(--white);
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    padding: 6rem 5%;
    text-align: center;
    background: var(--dark-bg);
    color: var(--white);
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-hero {
    padding: 8rem 5% 4rem;
    background: var(--light-bg);
    text-align: center;
}

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

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

.contact-info-section {
    padding: 6rem 5%;
    background: var(--white);
}

.contact-info-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.contact-offset-1 {
    transform: translateY(0);
}

.contact-offset-2 {
    transform: translateY(30px);
}

.contact-offset-3 {
    transform: translateY(-20px);
}

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

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block a {
    color: var(--accent-color);
}

.contact-block a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder {
    padding: 4rem 5%;
    background: var(--light-bg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(26, 77, 46, 0.9);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
}

.map-overlay p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.contact-cta {
    padding: 6rem 5%;
    text-align: center;
    background: var(--white);
}

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

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

.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: var(--light-bg);
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-service {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next-steps li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.thanks-next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
}

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

.legal-page {
    padding: 8rem 5% 4rem;
    background: var(--light-bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-color);
}

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

@media (max-width: 968px) {
    .nav-floating {
        top: 1rem;
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 5% 3rem;
    }

    .hero-offset-left,
    .hero-offset-right {
        transform: none;
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .philosophy-split,
    .mission-split,
    .cta-section-split,
    .service-detail-asymmetric {
        flex-direction: column;
    }

    .split-content-left,
    .split-image-right,
    .mission-image,
    .mission-text,
    .service-detail-content,
    .service-detail-image {
        transform: none;
    }

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        transform: none;
        max-width: 100%;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        transform: none;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3,
    .value-offset-4 {
        transform: none;
    }

    .contact-offset-1,
    .contact-offset-2,
    .contact-offset-3 {
        transform: none;
    }

    .team-left,
    .team-right,
    .team-center {
        transform: none;
    }

    .service-left,
    .service-right {
        transform: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .comparison-table {
        flex-direction: column;
    }

    .featured-package {
        transform: none;
    }

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