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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.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: 300px;
    margin: 0;
}

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

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

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

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

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

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

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

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

.brand-zone {
    flex: 0 0 auto;
}

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

.ad-disclosure {
    flex: 0 0 auto;
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex: 0 0 auto;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
}

.hero-visual {
    flex: 1 1 60%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-text-offset {
    max-width: 600px;
    color: #ffffff;
}

.hero-text-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.4;
}

.hero-side-panel {
    flex: 1 1 40%;
    background-color: #f8f9fa;
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

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

.hook-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.story-column-left {
    flex: 1 1 55%;
}

.story-column-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.story-column-right {
    flex: 1 1 45%;
}

.story-column-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.offset-benefit-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.benefit-card-left,
.benefit-card-right {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-card-right {
    margin-left: auto;
    margin-right: 40px;
}

.benefit-card-left {
    margin-left: 40px;
    margin-right: auto;
}

.benefit-card-left img {
    flex: 0 0 45%;
    width: 45%;
    height: 350px;
}

.benefit-card-right img {
    flex: 0 0 45%;
    width: 45%;
    height: 350px;
    order: 2;
}

.benefit-content {
    flex: 1;
    padding: 40px;
}

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

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

.trust-section {
    padding: 100px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-irregular {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    max-width: 350px;
    flex: 1 1 300px;
}

.testimonial-top {
    transform: translateY(-20px);
}

.testimonial-bottom {
    transform: translateY(20px);
}

.testimonial-middle {
    transform: translateY(0);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #aaa;
    font-style: normal;
}

.science-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.science-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-direction: column;
}

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

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

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

.science-text a:hover {
    text-decoration: underline;
}

.science-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 24px;
    border-radius: 4px;
}

.science-note strong {
    display: block;
    margin-bottom: 10px;
    color: #856404;
}

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

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

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

.services-intro p {
    font-size: 20px;
    color: #4a4a4a;
}

.services-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 500px;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
}

.service-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
}

.service-item img {
    width: 100%;
    height: 280px;
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    display: block;
    margin-bottom: 16px;
}

.original-price {
    font-size: 20px;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.form-intro {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

.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: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.references-list {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    padding-left: 20px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

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

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

.page-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.about-text-main {
    flex: 1 1 55%;
}

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

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

.about-image-offset {
    flex: 1 1 45%;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

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

.value-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.process-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.process-sidebar {
    flex: 0 0 35%;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.process-content {
    flex: 1;
}

.process-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.team-note-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

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

.team-note p {
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff;
}

.services-detail-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 0 0 50%;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
}

.service-detail-content {
    flex: 1;
    padding: 50px;
}

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

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

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

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
}

.service-highlight {
    background-color: #667eea;
    color: #ffffff;
}

.service-full-width {
    padding: 60px;
}

.service-full-width h2 {
    font-size: 36px;
    color: #ffffff;
}

.service-full-width p {
    font-size: 18px;
    color: #ffffff;
}

.package-contents {
    margin: 30px 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.package-contents h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.package-contents ul {
    list-style: none;
    padding-left: 0;
}

.package-contents li {
    font-size: 17px;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.package-contents li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.pricing-highlight {
    margin-top: 30px;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.price-original {
    font-size: 20px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
}

.price-discount {
    font-size: 18px;
    color: #ffc107;
    font-weight: 600;
}

.btn-highlight {
    background-color: #28a745;
    font-size: 18px;
    padding: 16px 32px;
}

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

.contact-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

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

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

.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: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map-placeholder {
    flex: 1 1 55%;
}

.contact-map-placeholder img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

.contact-note-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.contact-note p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.service-confirmation {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #155724;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.legal-page {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

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

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

.legal-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

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

    .story-grid,
    .about-layout,
    .contact-layout,
    .process-layout {
        flex-direction: column;
    }

    .benefit-card-left,
    .benefit-card-right {
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card-left img,
    .benefit-card-right img {
        width: 100%;
        flex: none;
        order: 1;
    }

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

    .service-detail-image {
        flex: none;
    }

    .service-item {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }

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

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

    .services-intro h2 {
        font-size: 32px;
    }

    .form-container {
        padding: 30px;
    }

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