* {
    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-color: #fafafa;
}

.ad-disclosure {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
}

.header-asymmetric {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    background-color: #ecf0f1;
    padding: 60px 5%;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-left: 8%;
}

.hero-heading {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-subtext {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #c0392b;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

.story-section {
    padding: 100px 5%;
    background-color: #fff;
}

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

.section-title-offset {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.8;
}

.inline-image-block {
    margin: 50px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

.insight-offset {
    padding: 120px 5%;
    background-color: #f8f9fa;
}

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

.insight-text {
    flex: 1.2;
    padding-right: 5%;
}

.insight-text h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.insight-visual {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.benefits-stacked {
    padding: 100px 5%;
    background-color: #fff;
}

.centered-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.benefit-cards-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.card-offset-left {
    margin-left: 0;
    margin-right: 10%;
}

.card-offset-right {
    margin-left: 10%;
    margin-right: 0;
}

.card-image {
    flex: 1;
    min-height: 300px;
}

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

.card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.select-service-btn {
    align-self: flex-start;
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section-diagonal {
    padding: 100px 5%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

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

.testimonial-block {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 6px;
    margin-left: 5%;
}

.testimonial-block:nth-child(even) {
    margin-left: 0;
    margin-right: 5%;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    opacity: 0.9;
}

.pricing-reveal {
    padding: 100px 5%;
    background-color: #ecf0f1;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-heading {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.pricing-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

.price-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.price-item:nth-child(odd) {
    margin-left: 5%;
}

.price-item:nth-child(even) {
    margin-right: 5%;
}

.price-item h4 {
    font-size: 20px;
    color: #2c3e50;
}

.price-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.form-section-creative {
    padding: 100px 5%;
    background-color: #fff;
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
}

.form-wrapper-offset h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.science-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.science-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.science-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

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

.disclaimer-text {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

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

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

.footer-column p,
.footer-column ul {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

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

.footer-column a:hover {
    color: #fff;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

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

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

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

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

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.about-hero {
    padding: 80px 5%;
    background-color: #ecf0f1;
}

.about-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.page-title {
    font-size: 48px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-primary {
    flex: 1;
}

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

.about-image-block {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.mission-section {
    padding: 100px 5%;
    background-color: #fff;
}

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

.mission-visual {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.section-heading-center {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.services-hero {
    padding: 80px 5%;
    background-color: #ecf0f1;
    text-align: center;
}

.services-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.products-showcase {
    padding: 80px 5%;
    background-color: #fff;
}

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

.product-detail.reverse {
    flex-direction: row-reverse;
}

.product-image-wrap {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.product-description {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.product-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.cta-section-services {
    padding: 80px 5%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
}

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

.cta-content-services h3 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-content-services p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-link-services {
    display: inline-block;
    background-color: #fff;
    color: #2980b9;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.cta-link-services:hover {
    opacity: 0.9;
}

.contact-hero {
    padding: 80px 5%;
    background-color: #ecf0f1;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-subtitle {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 5%;
    background-color: #fff;
}

.contact-details-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.contact-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    font-style: italic;
    margin-top: 10px;
}

.contact-cta {
    padding: 80px 5%;
    background-color: #ecf0f1;
    text-align: center;
}

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

.contact-cta-content h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-contact-btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-contact-btn:hover {
    background-color: #2980b9;
}

.thanks-section {
    padding: 120px 5%;
    background-color: #ecf0f1;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-heading {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-service {
    font-size: 18px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-info {
    font-size: 17px;
    margin-bottom: 35px;
    color: #666;
    line-height: 1.7;
}

.btn-back-home {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-back-home:hover {
    background-color: #2980b9;
}

.legal-content {
    padding: 80px 5%;
    background-color: #fff;
    min-height: 60vh;
}

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

.legal-wrapper h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-wrapper h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-wrapper h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

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

.legal-wrapper ul,
.legal-wrapper ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-wrapper a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-content-offset,
    .about-layout,
    .mission-container,
    .insight-container,
    .product-detail,
    .values-grid,
    .contact-details-layout {
        flex-direction: column;
    }

    .nav-offset {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-heading {
        font-size: 32px;
    }

    .form-wrapper-offset {
        margin-left: auto;
    }

    .card-offset-left,
    .card-offset-right,
    .price-item:nth-child(odd),
    .price-item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .benefit-card {
        flex-direction: column;
    }

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

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