* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #e8ecef;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-asymmetric {
    background: #f8fafb;
    padding: 60px 40px;
    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;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-text-block p {
    font-size: 20px;
    color: #576574;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    padding: 80px 40px;
    background: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto 0 12%;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.intro-narrow p {
    font-size: 18px;
    color: #576574;
    margin-bottom: 20px;
}

.services-stacked {
    padding: 60px 40px;
    background: #f8fafb;
}

.service-card-left,
.service-card-right {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-card-right {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: 0;
}

.service-card-full {
    max-width: 900px;
    margin: 0 auto;
    background: #2c3e50;
    color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    text-align: center;
}

.service-card-full h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-card-full p {
    font-size: 18px;
    margin-bottom: 24px;
}

.service-card-full .price-tag {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #3498db;
}

.service-card-full button {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card-full button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-image-bg {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-bg img {
    width: 100%;
    height: 400px;
    display: block;
}

.service-info {
    flex: 1;
    padding: 24px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-info p {
    font-size: 16px;
    color: #576574;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service-btn {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.why-us-asymmetric {
    padding: 80px 40px;
    background: #ffffff;
}

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

.why-text {
    flex: 1.2;
    padding-right: 40px;
}

.why-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a252f;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 17px;
    color: #576574;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.why-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 500px;
    display: block;
}

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

.form-container-offset {
    max-width: 680px;
    margin: 0 auto 0 15%;
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-offset h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a252f;
}

.form-intro {
    color: #576574;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e8ecef;
    border-radius: 6px;
    font-size: 15px;
    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;
}

.btn-submit {
    padding: 16px 36px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f8fafb;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

.page-hero-simple h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 40px;
    background: #ffffff;
}

.story-block {
    max-width: 800px;
    margin: 0 auto 60px;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.story-block p {
    font-size: 18px;
    color: #576574;
    margin-bottom: 20px;
}

.story-image-offset {
    max-width: 1000px;
    margin: 0 auto 0 10%;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-offset img {
    width: 100%;
    height: auto;
}

.team-values {
    padding: 80px 40px;
    background: #f8fafb;
}

.team-values h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.experience-section {
    padding: 80px 40px;
    background: #ffffff;
}

.exp-content {
    max-width: 800px;
    margin: 0 20% 0 auto;
}

.exp-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.exp-content p {
    font-size: 18px;
    color: #576574;
    margin-bottom: 20px;
}

.cta-section-about {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-section-about p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 60px 40px;
    background: #f8fafb;
}

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

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

.service-header h2 {
    font-size: 28px;
    margin: 0;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
}

.price-note {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

.service-body {
    padding: 32px;
}

.service-body h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #1a252f;
}

.service-body p {
    font-size: 16px;
    color: #576574;
    margin-bottom: 16px;
}

.service-body ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.service-body ul li {
    font-size: 16px;
    color: #576574;
    margin-bottom: 8px;
}

.duration,
.availability {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 16px;
}

.additional-info {
    padding: 60px 40px;
    background: #ffffff;
}

.additional-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a252f;
}

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

.info-block {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f8fafb;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.cta-services {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 32px;
}

.contact-info-layout {
    padding: 60px 40px;
    background: #f8fafb;
}

.contact-block {
    max-width: 600px;
    margin: 0 auto 48px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-block p {
    font-size: 16px;
    color: #576574;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-block .note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 12px;
}

.contact-approach {
    padding: 60px 40px;
    background: #ffffff;
}

.contact-approach h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a252f;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.cta-contact {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-contact p {
    font-size: 20px;
    margin-bottom: 32px;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.thanks-message {
    font-size: 20px;
    color: #27ae60;
    margin-bottom: 16px;
}

.thanks-container p {
    font-size: 16px;
    color: #576574;
    margin-bottom: 32px;
}

.service-confirmation {
    background: #f8fafb;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #2c3e50;
}

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

.btn-home,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.next-steps {
    padding: 80px 40px;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a252f;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 4px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a252f;
}

.timeline-content p {
    font-size: 16px;
    color: #576574;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin: 16px 0 16px 24px;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

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

    .hero-text-block h1 {
        font-size: 32px;
    }

    .hero-image-overlap {
        margin-left: 0;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .why-content-overlap {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .form-container-offset {
        margin: 0 auto;
    }
}