* {
    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: #333;
    background: #fff;
}

.ad-notice {
    background: #f8f8f8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #fafafa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f5f5f5;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
    max-width: 580px;
}

.hero-image {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

.cta-primary {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 18px 42px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0052a3;
}

.story-section {
    padding: 100px 40px;
    background: #fff;
}

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

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.insight-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.insight-text ul {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.insight-text ul li {
    font-size: 17px;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.insight-text ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 24px;
}

.insight-text a {
    color: #0066cc;
    text-decoration: none;
}

.insight-text a:hover {
    text-decoration: underline;
}

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

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

.testimonial-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #fff;
}

.testimonial-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-card {
    flex: 1;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.testimonial-author {
    font-size: 15px;
    color: #999;
    font-style: italic;
}

.services-preview {
    padding: 100px 40px;
    background: #fff;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 26px;
    margin: 25px 30px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 30px 20px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 30px 25px;
}

.select-service {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 30px 30px;
    border-radius: 6px;
    transition: background 0.3s;
}

.select-service:hover {
    background: #0052a3;
}

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

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.form-image {
    flex: 1;
    background: #ddd;
    min-height: 500px;
}

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

.form-content {
    flex: 1;
    padding: 50px;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-content p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #666;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
}

.submit-btn {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0052a3;
}

.benefits-section {
    padding: 100px 40px;
    background: #fff;
}

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

.benefits-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-split {
    display: flex;
    gap: 50px;
}

.benefit-item {
    flex: 1;
}

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.references-section {
    padding: 60px 40px;
    background: #f9f9f9;
}

.references-container {
    max-width: 1000px;
    margin: 0 auto;
}

.references-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fff8e6;
    border-top: 2px solid #ffcc00;
    border-bottom: 2px solid #ffcc00;
}

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

.disclaimer-container p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.main-footer {
    background: #1a1a1a;
    color: #ddd;
    padding: 60px 40px 30px;
}

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

.footer-block {
    flex: 1;
}

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

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-block ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    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;
}

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

.cookie-content a {
    color: #6db3ff;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.accept {
    background: #0066cc;
    color: #fff;
}

.cookie-btn.reject {
    background: #555;
    color: #fff;
}

.page-hero {
    padding: 100px 40px 80px;
    background: #f5f5f5;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 20px;
    color: #666;
}

.about-split {
    padding: 100px 40px;
    background: #fff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

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

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

.mission-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.mission-image {
    flex: 1;
    background: #e8e8e8;
}

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

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #555;
    line-height: 1.8;
}

.values-section {
    padding: 100px 40px;
    background: #fff;
}

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

.values-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.process-section {
    padding: 100px 40px;
    background: #f9f9f9;
}

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

.process-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.process-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #555;
    line-height: 1.8;
}

.process-image {
    flex: 1;
    background: #e8e8e8;
}

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

.services-detail {
    padding: 60px 40px 100px;
}

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

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.service-detail-grid {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.8;
}

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

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.select-service-detail {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-detail:hover {
    background: #0052a3;
}

.services-cta {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

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

.services-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.services-cta-content p {
    font-size: 19px;
    color: #ddd;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 40px;
    background: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.contact-image {
    flex: 1;
    background: #e8e8e8;
}

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

.contact-additional {
    padding: 80px 40px;
    background: #f9f9f9;
}

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

.contact-additional-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-additional-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: #fff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 18px;
    color: #333;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.thanks-next {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next ul li {
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.thanks-next ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

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

.btn-primary {
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    background: #fff;
    color: #0066cc;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0066cc;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #fff;
}

.legal-page {
    padding: 60px 40px 100px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #333;
}

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

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.legal-section ol {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ol li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.legal-section a {
    color: #0066cc;
    text-decoration: none;
}

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

.legal-update {
    font-size: 14px;
    color: #999;
    margin-top: 50px;
    font-style: italic;
}

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

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

    .hero-image {
        height: 400px;
    }

    .story-split, .insight-container, .mission-container, .contact-layout, .process-split {
        flex-direction: column;
        gap: 50px;
    }

    .service-detail-card, .service-detail-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-wrap {
        flex-direction: column;
    }

    .benefits-split, .values-grid {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        gap: 15px;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .hero-content p {
        font-size: 17px;
    }

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

    .services-grid {
        gap: 30px;
    }

    .form-container {
        flex-direction: column;
    }

    .form-image {
        min-height: 300px;
    }
}

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

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

    .story-text h2, .insight-text h2, .mission-text h2, .about-text h2 {
        font-size: 28px;
    }

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

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

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