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

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

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

a:hover {
    color: #2980b9;
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-right {
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.btn-cta {
    display: inline-block;
    padding: 16px 38px;
    background-color: #ffffff;
    color: #667eea;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 17px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.trust-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 600;
    margin-top: 15px;
    font-size: 17px;
}

.link-arrow:after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover:after {
    margin-left: 14px;
}

.value-props {
    padding: 100px 0;
    background-color: #ffffff;
}

.value-props h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.service-list {
    margin: 40px 0;
}

.service-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.service-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
}

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

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #3498db;
    color: #3498db;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    background: rgba(255,255,255,0.95);
    padding: 35px;
    border-radius: 12px;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 4px;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-form {
    max-width: 100%;
}

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

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

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

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

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

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

.checkbox-group label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.btn-submit {
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

.sticky-btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

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

.btn-primary {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    padding: 12px 28px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 0;
    background-color: #ffffff;
}

.method-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.method-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.method-step {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.method-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

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

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

.services-intro {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
}

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

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

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

.services-list {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-card-full {
    max-width: 900px;
    margin: 0 auto 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.service-header h3 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.service-body {
    padding: 40px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 30px;
}

.service-body h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

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

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.service-time {
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-bottom: 25px;
}

.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

.contact-form-centered {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.form-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-block {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-block a {
    color: #3498db;
    text-decoration: underline;
}

.contact-map-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.transport-list {
    list-style: none;
    margin-top: 20px;
}

.transport-list li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
}

.contact-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.thanks-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-box {
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-info {
    font-size: 17px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 30px;
}

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

.next-steps {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.next-steps h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.step-card {
    flex: 1 1 calc(33.333% - 20px);
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-card .step-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

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

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

.contact-reminder {
    padding: 60px 0;
    background-color: #ffffff;
}

.reminder-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.reminder-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.reminder-box p {
    font-size: 18px;
    color: #555;
}

.reminder-box a {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

.legal-page {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-intro {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .hamburger {
        display: flex;
    }

    .card {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .method-step {
        flex: 1 1 100%;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .split-content h2,
    .value-props h2,
    .testimonials h2,
    .method-section h2,
    .values-section h2,
    .form-section h2,
    .next-steps h2,
    .legal-page h1 {
        font-size: 32px;
    }

    .cta-box h2,
    .intro-content h2 {
        font-size: 28px;
    }

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

    .sticky-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .thanks-box {
        padding: 40px 25px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }
}
