* {
    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: #1a1a1a;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background: #0052a3;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 20px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    padding: 8rem 3rem 4rem 5rem;
    max-width: 50%;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 55%;
    height: 85%;
    background: #ddd;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.intro-split {
    padding: 6rem 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-wide {
    flex: 2;
}

.intro-text-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text-wide p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.intro-visual-small {
    flex: 1;
    background: #e9ecef;
}

.intro-visual-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.problem-block-offset {
    background: #f8f9fa;
    padding: 5rem 3rem;
}

.problem-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-image-left {
    flex: 1.2;
    background: #ddd;
}

.problem-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.problem-content-right {
    flex: 1;
    padding-left: 2rem;
}

.problem-content-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-content-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-asymmetric {
    padding: 6rem 3rem;
    background: #fff;
}

.services-header-diagonal {
    max-width: 800px;
    margin: 0 0 4rem 5rem;
}

.services-header-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-diagonal p {
    font-size: 1.15rem;
    color: #666;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(60% - 1rem);
}

.service-medium {
    flex: 1 1 calc(50% - 1rem);
}

.service-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-icon {
    width: 100%;
    height: 250px;
    background: #ddd;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.btn-select-service {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.trust-section-offset {
    padding: 6rem 3rem;
    background: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.trust-content {
    max-width: 55%;
    position: relative;
    z-index: 10;
    padding: 2rem 3rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.trust-item p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.trust-image-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 100%;
    background: #333;
    opacity: 0.4;
}

.trust-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-diagonal {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.testimonials-diagonal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.form-section-asymmetric {
    padding: 6rem 3rem;
    background: #fff;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.contact-form {
    flex: 1.2;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

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

@media (max-width: 1024px) {
    .hero-content-offset {
        max-width: 60%;
    }

    .hero-image-diagonal {
        width: 50%;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }
}

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 10rem 3rem 5rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #ccc;
}

.about-story {
    padding: 6rem 3rem;
    background: #fff;
}

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

.about-text-block {
    flex: 1.3;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-offset {
    flex: 1;
    background: #ddd;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.philosophy-section {
    padding: 6rem 3rem;
    background: #f8f9fa;
}

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

.philosophy-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.philosophy-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.philosophy-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 3rem;
    background: #fff;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-image {
    flex: 1;
    background: #ddd;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.values-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid #0066cc;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-about {
    padding: 6rem 3rem;
    background: #1a1a1a;
    text-align: center;
    color: #fff;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.services-page-content {
    padding: 8rem 3rem 4rem;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.services-note {
    padding: 4rem 3rem;
    background: #f8f9fa;
    max-width: 1100px;
    margin: 0 auto;
}

.note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.note-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.note-content ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.note-content li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-page-content {
    padding: 8rem 3rem 4rem;
    background: #f8f9fa;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-details {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background: #ddd;
}

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 3rem 4rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service strong {
    color: #0066cc;
}

.legal-page {
    padding: 8rem 3rem 4rem;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        width: 95%;
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        max-width: 100%;
        padding: 6rem 2rem 2rem;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
    }

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

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

    .trust-content {
        max-width: 100%;
    }

    .trust-image-overlay {
        display: none;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .philosophy-card,
    .value-item {
        flex: 1 1 100%;
    }

    .team-section {
        flex-direction: column;
    }

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