* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fafafa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #374151;
}

.intro-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.intro-content-wide h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.split-reverse {
    display: flex;
    background-color: #f9fafb;
}

.split-reverse .split-image {
    flex: 1;
    background-color: #d1d5db;
}

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

.split-reverse .split-text {
    flex: 1;
    padding: 80px 60px;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.services-preview {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

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

.services-header p {
    font-size: 18px;
    color: #6b7280;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 24px 16px;
}

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

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #374151;
}

.insight-block {
    padding: 100px 24px;
    background-color: #1f2937;
    color: #ffffff;
}

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

.insight-content h3 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #ffffff;
}

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

.reference {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.split-standard {
    display: flex;
    background-color: #ffffff;
}

.split-standard .split-text {
    flex: 1;
    padding: 80px 60px;
}

.split-standard .split-image {
    flex: 1;
    background-color: #d1d5db;
}

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

.testimonial-section {
    padding: 100px 24px;
    background-color: #f3f4f6;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

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

.form-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-wrapper p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 40px;
    text-align: center;
}

form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    margin-top: 20px;
}

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

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: background-color 0.2s;
}

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

.selected-service-display {
    background-color: #f3f4f6;
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
}

.additional-services {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.additional-services h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.additional-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.additional-item h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.additional-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 16px;
}

.additional-item .price {
    margin: 16px 0;
}

.additional-item button {
    width: 100%;
    padding: 12px 24px;
    background-color: #f3f4f6;
    color: #1a1a1a;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.additional-item button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #fffbeb;
    border-top: 2px solid #fbbf24;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #78350f;
}

footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 24px 24px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list a {
    color: #60a5fa;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
}

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

.email-display {
    font-family: monospace;
    user-select: all;
    cursor: text;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
    color: #d1d5db;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #059669;
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

.page-hero {
    padding: 80px 24px;
    background-color: #f9fafb;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #6b7280;
}

.about-content {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}

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

.methodology-section {
    padding: 80px 24px;
    background-color: #f3f4f6;
}

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

.method-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.method-container > p {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
}

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

.method-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.method-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.team-philosophy {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.philosophy-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.values-section {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.value-item h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.evidence-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.evidence-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-detailed {
    padding: 60px 24px;
    background-color: #ffffff;
}

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

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

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

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

.service-detail-content > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-features ul {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 8px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #6b7280;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-image {
    flex: 1;
    background-color: #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-cta {
    padding: 80px 24px;
    background-color: #1f2937;
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 18px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #f3f4f6;
}

.contact-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 32px;
}

.contact-block h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.contact-block .note {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 24px;
}

.contact-note {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #fbbf24;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.location-section {
    padding: 80px 24px;
    background-color: #f9fafb;
}

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

.location-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 100px 24px;
    background-color: #ffffff;
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-next {
    margin-bottom: 48px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    list-style-position: inside;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 8px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #f3f4f6;
    color: #1a1a1a;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

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

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

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 24px;
    }

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

    .split-reverse,
    .split-standard {
        flex-direction: column;
    }

    .split-reverse .split-text,
    .split-standard .split-text {
        padding: 60px 24px;
    }

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

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

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

    .contact-wrapper {
        flex-direction: column;
    }

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }
}