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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    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;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept {
    background-color: #4a90e2;
    color: #fff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

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

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand h1 {
    font-size: 28px;
    color: #2c2c2c;
    font-weight: 700;
}

.ad-notice {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.hero-right {
    flex: 1;
    position: relative;
    background-color: #e8f0f7;
}

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

.intro-section {
    padding: 100px 60px;
    background-color: #fff;
}

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

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.intro-image {
    flex: 1;
    background-color: #f0f4f8;
}

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

.services-overview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-centered h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.service-image-wrapper {
    flex: 1;
    background-color: #e8f0f7;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #4a90e2;
}

.approach-section {
    padding: 100px 60px;
    background-color: #fff;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.approach-left {
    flex: 1;
}

.approach-left h3 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step-item {
    display: flex;
    gap: 25px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    min-width: 60px;
}

.step-text h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.approach-right {
    flex: 1;
    background-color: #f0f4f8;
}

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

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

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.form-left-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #333;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background-color: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-right-content {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 60px;
    background-color: #e8eef3;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 60px 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
}

.about-story {
    padding: 100px 60px;
    background-color: #fff;
}

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

.story-text-block {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.story-text-block h3 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.story-split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-left-section {
    flex: 1;
    background-color: #f0f4f8;
}

.story-left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-right-section {
    flex: 1;
}

.story-right-section h4 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #2c2c2c;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.expertise-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.expertise-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.expertise-intro {
    font-size: 17px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.expertise-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.expertise-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.approach-philosophy {
    padding: 100px 60px;
    background-color: #fff;
}

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

.philosophy-left {
    flex: 1;
}

.philosophy-left h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.philosophy-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.philosophy-right {
    flex: 1;
    background-color: #f0f4f8;
}

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

.cta-about-section {
    padding: 100px 60px;
    background-color: #2c2c2c;
    text-align: center;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-about-content h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-about-content p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 35px;
}

.services-hero {
    padding: 100px 60px 80px;
    background-color: #2c2c2c;
    text-align: center;
}

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

.services-hero-content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 25px;
}

.services-hero-content p {
    font-size: 18px;
    color: #ccc;
}

.detailed-services {
    padding: 80px 60px;
    background-color: #fff;
}

.detailed-services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-split {
    display: flex;
}

.service-detail-left {
    flex: 1;
    background-color: #e8f0f7;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-right {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-price-large {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 25px;
}

.service-detail-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #333;
}

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

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.packages-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.packages-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.packages-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.contact-page-section {
    padding: 0;
    min-height: 700px;
}

.contact-page-container {
    display: flex;
    min-height: 700px;
}

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-info-side > p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.contact-note {
    padding: 20px;
    background-color: #e8f0f7;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.contact-visual-side {
    flex: 1;
    background-color: #e8f0f7;
}

.contact-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.thanks-service-info {
    background-color: #e8f0f7;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #357abd;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #fff;
}

.legal-page {
    padding: 80px 60px;
    background-color: #fff;
}

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

.legal-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .page-hero-split,
    .intro-split,
    .approach-content,
    .form-container-split,
    .story-split-content,
    .philosophy-split,
    .contact-page-container {
        flex-direction: column;
    }

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

    .service-detail-card .service-detail-split,
    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .hero-content h2 {
        font-size: 32px;
    }

    .services-hero-content h2 {
        font-size: 32px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
}