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

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-visual {
    margin-top: 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 120px 20px;
    background-color: #f8f9fa;
}

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

.story-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.visual-block {
    position: relative;
    height: 600px;
    background-color: #34495e;
}

.visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.visual-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    max-width: 700px;
    padding: 40px;
}

.visual-text-overlay h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.4);
}

.visual-text-overlay p {
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
}

.insight-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.insight-image {
    flex: 1;
    background-color: #ecf0f1;
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.services-preview h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #bdc3c7;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #7f8c8d;
    line-height: 1.6;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 15px;
}

.service-card .cta-service {
    margin: 0 25px 25px;
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .cta-service:hover {
    background-color: #2980b9;
}

.trust-section {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial {
    margin-bottom: 50px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

.visual-break {
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

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

.approach-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.approach-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step {
    width: calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.form-wrapper > p {
    font-size: 18px;
    margin-bottom: 40px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #ffffff;
    color: #2c3e50;
}

.contact-form textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
}

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

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-section p,
.footer-section a {
    font-size: 15px;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.accept:hover {
    opacity: 0.9;
}

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

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

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

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    font-weight: 300;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.team-philosophy {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.philosophy-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.approach-visual {
    position: relative;
    height: 600px;
    background-color: #34495e;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.overlay-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
}

.overlay-text p {
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}

.journey-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.journey-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.journey-section p {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #34495e;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.service-pricing {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-pricing .cta-service {
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-pricing .cta-service:hover {
    background-color: #2980b9;
}

.cta-bottom {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.contact-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-info-wrapper {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #7f8c8d;
}

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

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-approach {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-approach h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-approach p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-page {
    padding: 140px 20px 80px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 400px);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.thanks-service {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
}

.thanks-service p {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

.thanks-next {
    margin: 50px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.thanks-next ol {
    padding-left: 25px;
}

.thanks-next li {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

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

.thanks-visual {
    max-width: 700px;
    margin: 50px auto 0;
    background-color: #ecf0f1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
}

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

.legal-page h1 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 50px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        top: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .insight-container,
    .about-content,
    .service-detail,
    .contact-info-wrapper {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

    .step {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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