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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #007bff;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-subtext {
    font-size: 19px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 36px;
}

.hero-visual-block {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #dee2e6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.story-intro {
    padding: 100px 8%;
    background-color: #ffffff;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
}

.story-img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #dee2e6;
}

.insight-block-offset {
    display: flex;
    padding: 120px 8%;
    background-color: #f8f9fa;
    gap: 60px;
    align-items: center;
}

.insight-left {
    flex: 1;
    padding-right: 40px;
}

.insight-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.insight-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.insight-visual {
    flex: 0.8;
    transform: translateY(-40px);
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #dee2e6;
}

.benefits-stacked {
    padding: 100px 8%;
    background-color: #ffffff;
}

.benefit-card-asymmetric {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.benefit-card-asymmetric.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
}

.benefit-icon {
    flex: 0.6;
}

.benefit-icon img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #dee2e6;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #495057;
}

.testimonials-inline {
    padding: 100px 8%;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial-wrapper blockquote {
    border-left: 4px solid #007bff;
    padding-left: 32px;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-wrapper cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #adb5bd;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-mini-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-mini-card.offset {
    transform: translateY(30px);
}

.service-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-mini-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-mini-card p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
}

.link-arrow {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #0056b3;
}

.link-arrow::after {
    content: ' →';
}

.cta-center {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #495057;
    transform: translateY(-2px);
}

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

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 0.8;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.science-references {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

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

.references-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.references-intro p {
    font-size: 18px;
    color: #495057;
}

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

.ref-card {
    flex: 1;
    min-width: 300px;
    padding: 28px;
    background-color: #ffffff;
    border-left: 4px solid #007bff;
    border-radius: 6px;
}

.ref-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.ref-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.ref-card a:hover {
    color: #0056b3;
}

.main-footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 80px 8% 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-disclaimer {
    background-color: #1a1d20;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ced4da;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e9ecef;
    padding: 24px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    color: #495057;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.cookie-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #0056b3;
}

.page-hero-minimal {
    padding: 120px 8% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

.about-story-offset {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.story-block-left {
    flex: 1;
}

.story-block-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-block-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.6;
}

.story-visual-right {
    flex: 0.8;
}

.story-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dee2e6;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 36px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.value-card.offset-top {
    transform: translateY(20px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.team-intro {
    padding: 100px 8%;
    background-color: #ffffff;
}

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

.team-content-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content-narrow p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
    line-height: 1.6;
}

.team-img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #dee2e6;
}

.approach-section {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-item {
    padding: 36px;
    background-color: #ffffff;
    border-left: 5px solid #007bff;
    border-radius: 6px;
}

.approach-item.offset-right {
    margin-left: 60px;
}

.approach-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.6;
}

.cta-about {
    padding: 100px 8%;
    background-color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-full {
    padding: 80px 8%;
    background-color: #ffffff;
}

.service-card-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-card-asymmetric.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
}

.service-image {
    flex: 0.6;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #dee2e6;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #495057;
    line-height: 1.6;
}

.service-benefits {
    list-style-position: inside;
    margin-bottom: 28px;
}

.service-benefits li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-pricing {
    margin-bottom: 28px;
    padding: 20px;
    background-color: #e7f3ff;
    border-radius: 6px;
}

.price-label {
    font-size: 15px;
    color: #495057;
    margin-right: 12px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-service:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.services-note {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

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

.note-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.note-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.6;
}

.contact-content {
    padding: 80px 8%;
    background-color: #ffffff;
}

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

.contact-block {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dee2e6;
}

.contact-cta {
    padding: 100px 8%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
    color: #495057;
    line-height: 1.6;
}

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

.thanks-details p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-details ul {
    list-style-position: inside;
}

.thanks-details li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #495057;
}

.thanks-details a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.thanks-details a:hover {
    color: #0056b3;
}

.thanks-service-info {
    margin-bottom: 32px;
}

.service-selected {
    font-size: 18px;
    color: #28a745;
    padding: 16px;
    background-color: #d4edda;
    border-radius: 6px;
    border-left: 4px solid #28a745;
}

.thanks-visual {
    flex: 0.7;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dee2e6;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 800;
    text-align: center;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    margin-left: 24px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.6;
}

.legal-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #0056b3;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 700;
}

.legal-update {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 2px solid #e9ecef;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

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

    .hero-visual-block {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
    }

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

    .insight-block-offset,
    .about-story-offset,
    .form-container-asymmetric,
    .service-card-asymmetric,
    .benefit-card-asymmetric,
    .contact-info-asymmetric,
    .thanks-section {
        flex-direction: column;
    }

    .service-card-asymmetric.reverse,
    .benefit-card-asymmetric.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .approach-item.offset-right {
        margin-left: 0;
    }

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