* {
    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: #2c2c2c;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #2d7cf6;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1a5fd9;
}

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

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

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.ad-label {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

.nav-primary {
    display: flex;
}

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

.nav-link {
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2d7cf6;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s;
}

.hero-section {
    width: 100%;
}

.hero-visual {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-primary {
    background: #2d7cf6;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a5fd9;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.section-title-center {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.services-grid-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.section-heading-offset {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d7cf6;
    margin-bottom: 20px;
}

.btn-card {
    width: 100%;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: #2d7cf6;
}

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

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.split-content {
    flex: 1;
}

.section-title-left {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e5e5e5;
    line-height: 1;
    flex-shrink: 0;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.split-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    padding: 32px;
    background: #f9f9f9;
    border-left: 4px solid #2d7cf6;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

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

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

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.form-subtitle {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.form-input,
.form-textarea {
    padding: 14px 16px;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 15px;
    background: #2a2a2a;
    color: #ffffff;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2d7cf6;
}

.form-textarea {
    resize: vertical;
}

.form-input[readonly] {
    background: #333;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 32px;
    background: #2d7cf6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a5fd9;
}

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

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

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

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #cccccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2d7cf6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2d7cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 40px;
    color: #ffffff;
}

.thanks-heading {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.btn-secondary {
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2d7cf6;
}

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

.about-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-subheading {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story {
    padding: 100px 40px;
}

.story-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

.contact-heading {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-subtext {
    font-size: 18px;
    color: #cccccc;
}

.contact-info-section {
    padding: 100px 40px;
}

.info-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.info-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.services-list-section {
    padding: 100px 40px;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 48px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-details {
    flex: 1;
}

.service-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2d7cf6;
}

.legal-page {
    padding: 80px 40px;
}

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

.legal-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c2c2c;
}

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

.legal-section ul {
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

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

    .nav-primary {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .section-title-center,
    .section-heading-offset,
    .section-title-left {
        font-size: 28px;
    }

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

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

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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