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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

/* Navigation */
.nav-main {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #27ae60;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    background: #27ae60;
    color: #fff;
}

.stat-item {
    flex: 1;
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 600px;
}

.split-content-left,
.split-content-right,
.split-content-left-wide,
.split-content-right-wide {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left-wide {
    flex: 1.2;
}

.split-image-right,
.split-image-left {
    flex: 1;
}

.split-image-right img,
.split-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
}

/* Feature Cards */
.feature-cards {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.section-title-centered {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-inline,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: #27ae60;
    color: #fff;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.cta-secondary:hover {
    background: #27ae60;
    color: #fff;
}

.cta-inline {
    background: #3498db;
    color: #fff;
    padding: 0.75rem 1.5rem;
}

.cta-inline:hover {
    background: #2980b9;
}

.cta-primary-large {
    background: #27ae60;
    color: #fff;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.cta-primary-large:hover {
    background: #229954;
}

/* Inline CTA Box */
.inline-cta-box {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #27ae60;
}

.inline-cta-box p {
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

.testimonial-text {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background: #fff;
}

.section-title-left {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item.featured {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #27ae60;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #27ae60;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-desc {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-desc p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    margin-top: 1rem;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.service-cta {
    background: #27ae60;
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #229954;
}

/* Trust Section */
.trust-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.trust-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trust-points {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-point {
    flex: 1 1 calc(33.333% - 1.5rem);
}

.trust-point h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
}

.trust-point p {
    opacity: 0.9;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group a {
    color: #27ae60;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.final-cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #27ae60;
    font-size: 1.125rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #27ae60;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-cta.show {
    display: block;
}

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

.sticky-cta-content span {
    color: #fff;
    font-weight: 500;
}

.sticky-cta-btn {
    background: #27ae60;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #229954;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Detailed Page */
.services-detailed {
    padding: 3rem 2rem;
}

.service-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.badge-popular {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.detailed-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detailed-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #2c3e50;
    line-height: 1.6;
}

.detailed-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.125rem;
}

.service-price-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #27ae60;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Packages Section */
.packages-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.package-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card.featured {
    border: 3px solid #27ae60;
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.package-includes {
    flex: 1;
    margin-bottom: 1.5rem;
}

.package-includes p {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.package-includes ul {
    list-style: none;
}

.package-includes ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

.package-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.package-price {
    margin: 1.5rem 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.new-price {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: #27ae60;
}

.package-saving {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* About Page */
.about-story {
    padding: 4rem 2rem;
    background: #fff;
}

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

.container-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.container-narrow p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.team-approach {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

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

.client-categories {
    margin-top: 2rem;
}

.client-cat {
    margin-bottom: 2rem;
}

.client-cat h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.client-cat p {
    color: #5a6c7d;
}

.values-section {
    padding: 5rem 2rem;
    background: #fff;
}

.values-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.numbers-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #fff;
}

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

.number-box {
    flex: 1 1 calc(33.333% - 1.5rem);
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.big-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.number-box p {
    opacity: 0.9;
}

.expertise-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.expertise-list {
    margin-top: 2rem;
}

.expertise-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.expertise-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.partners-section {
    padding: 5rem 2rem;
    background: #fff;
}

.partners-note {
    max-width: 800px;
    margin: 2rem auto 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.partners-list {
    list-style: none;
    margin-top: 1rem;
}

.partners-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
}

.partners-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.cta-about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-align: center;
}

.cta-about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-about-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-info-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    color: #27ae60;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-info-card a {
    color: #27ae60;
}

.note-small {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.contact-reasons {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reason-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.reason-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reason-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.response-time {
    padding: 5rem 2rem;
    background: #fff;
}

.timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

.map-placeholder {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.map-box {
    background: #e9ecef;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.map-note {
    text-align: center;
    padding: 2rem;
}

.map-note p {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    color: #27ae60;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-info {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    margin: 0;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #27ae60;
    color: #fff;
}

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.btn-secondary:hover {
    background: #27ae60;
    color: #fff;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #5a6c7d;
}

.thanks-contact a {
    color: #27ae60;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #fff;
}

.legal-intro {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-page strong {
    color: #2c3e50;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gdpr-table thead,
.cookies-table thead {
    background: #f8f9fa;
}

.gdpr-table th,
.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .service-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 992px) {
    .hero-split,
    .split-section {
        flex-direction: column;
    }

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

    .feature-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .package-card {
        flex: 1 1 100%;
    }

    .package-card.featured {
        transform: none;
    }

    .approach-item,
    .value-card,
    .reason-item {
        flex: 1 1 100%;
    }

    .number-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-info-card {
        flex: 1 1 100%;
    }

    .trust-point {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

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

    .stats-bar {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

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

    .hero-left,
    .split-content-left,
    .split-content-right {
        padding: 2rem;
    }

    .section-title-centered,
    .section-title-left {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .number-box {
        flex: 1 1 100%;
    }

    .footer-container {
        flex-direction: column;
    }

    .contact-form {
        padding: 2rem;
    }

    .thanks-container {
        padding: 2rem;
    }
}

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

    .section-title-centered,
    .section-title-left,
    .page-hero h1 {
        font-size: 1.75rem;
    }

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

    .service-price {
        font-size: 1.5rem;
    }
}
