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

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

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.hero-image {
    flex: 1;
    background: #f5f5f5;
}

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

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

.cta-button:hover {
    background: #2980b9;
}

.intro-split {
    background: #f8f9fa;
    padding: 100px 20px;
}

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

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background: #e9ecef;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-highlight {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header-center h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 20px;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-image {
    background: #f5f5f5;
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
}

.form-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.form-intro {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 35px;
}

.selected-service-display {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.submit-button:hover {
    background: #229954;
}

.trust-split {
    padding: 100px 20px;
}

.text-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: #2980b9;
}

.cta-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

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

.cta-button-light:hover {
    background: #ecf0f1;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
    color: #888888;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #666666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    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;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #c0392b;
}

.page-hero {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

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

.about-intro-split {
    padding: 80px 20px;
}

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

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 42px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.story-split {
    padding: 80px 20px;
}

.team-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

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

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

.team-header p {
    font-size: 18px;
    color: #6c757d;
}

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

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-block {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

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

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

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

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

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

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

.services-info {
    background: #f8f9fa;
    padding: 80px 20px;
}

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

.info-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    color: #6c757d;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

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

.contact-info-block > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 5px;
}

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

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

.visit-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

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

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

.visit-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

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

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.thanks-info {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 35px;
}

.submission-details p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.thanks-next ul {
    list-style: none;
    margin-bottom: 35px;
}

.thanks-next ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

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

.cta-button-outline:hover {
    background: #3498db;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
    background: #f5f5f5;
}

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

.legal-page {
    padding: 60px 20px;
}

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

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

.legal-intro {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 50px;
}

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

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

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
}

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

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

.legal-section ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content,
    .split-container,
    .service-detail-split,
    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

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

    .value-item {
        flex: 0 0 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps {
        flex-direction: column;
    }

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