* {
    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 {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

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

.nav-links a {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    min-width: 400px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: #27ae60;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 4px;
}

.hero-image-right {
    flex: 1;
    min-width: 500px;
    background-color: #f0f4f3;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #27ae60;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #27ae60;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.intro-image-offset {
    flex: 0.8;
    background-color: #e8f0ee;
}

.intro-image-offset img {
    width: 100%;
    height: 420px;
    border-radius: 8px;
}

.value-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.value-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.value-image-side {
    flex: 0.9;
    background-color: #f0f4f3;
}

.value-image-side img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

.value-content-side {
    flex: 1.1;
}

.value-content-side h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.value-content-side > p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #27ae60;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

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

.service-select-btn {
    padding: 12px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.form-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 48px;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

.form-submit-btn:hover {
    background-color: #229954;
}

.trust-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
    font-style: italic;
}

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

.final-cta-section {
    padding: 100px 40px;
    background-color: #27ae60;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

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

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #f0f4f3;
}

.story-image img {
    width: 100%;
    height: 480px;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.values-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.value-block {
    flex: 1;
    padding: 36px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.team-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-container > p {
    font-size: 17px;
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 320px;
}

.member-image {
    background-color: #f0f4f3;
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: 280px;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-about-section {
    padding: 80px 40px;
    background-color: #27ae60;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-about-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

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

.service-detail-card {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f4f3;
}

.service-detail-image img {
    width: 100%;
    height: 420px;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.service-extras {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.extras-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.extras-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.extras-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.extra-item {
    flex: 1;
    min-width: 260px;
    padding: 28px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.extra-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.extra-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.pricing-info-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

.pricing-info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-info-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.pricing-info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-form-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-main {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

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

.contact-info-side h2 {
    font-size: 38px;
    margin-bottom: 36px;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-image-side {
    flex: 1;
    background-color: #f0f4f3;
}

.contact-image-side img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

.contact-cta-section {
    padding: 80px 40px;
    background-color: #27ae60;
    text-align: center;
}

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

.contact-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 24px;
}

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

.thanks-content > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.thanks-service-info {
    padding: 24px;
    background-color: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 48px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: disc;
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

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

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

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-wrapper,
    .value-container,
    .story-container,
    .contact-wrapper,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right,
    .intro-text-block,
    .intro-image-offset {
        min-width: auto;
    }

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

    .values-split,
    .approach-steps {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-content-left h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-split,
    .intro-asymmetric,
    .value-section,
    .form-section,
    .trust-section,
    .final-cta-section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .testimonials-grid {
        flex-direction: column;
    }

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