* {
    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: #1a1a2e;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
}

.floating-nav {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    border-left: 1px solid #ddd;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 120px 60px 60px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 80px;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

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

.hero-visual-block {
    flex: 1;
    position: relative;
    transform: rotate(-3deg) translateY(40px);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background-color: #1a3a52;
}

.hero-visual-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 150px 80px;
    background: #ffffff;
}

.offset-text-block {
    flex: 1.2;
    padding-left: 120px;
}

.offset-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f2027;
    line-height: 1.2;
}

.offset-text-block p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.offset-image-right {
    flex: 1;
    transform: translateY(-60px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #2c5364;
}

.offset-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-grid-asymmetric {
    padding: 120px 60px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e8eef3 100%);
}

.section-header-diagonal {
    max-width: 700px;
    margin-bottom: 80px;
    transform: translateX(80px);
}

.section-header-diagonal h2 {
    font-size: 3rem;
    color: #0f2027;
    margin-bottom: 15px;
}

.section-header-diagonal p {
    font-size: 1.2rem;
    color: #555;
}

.service-cards-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 0 1 calc(60% - 20px);
}

.card-medium {
    flex: 0 1 calc(45% - 20px);
}

.card-small {
    flex: 0 1 calc(30% - 20px);
}

.offset-left {
    transform: translateX(-40px);
}

.offset-right {
    transform: translateX(40px);
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #2c5364;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #0f2027;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 25px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 0 25px 20px;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.form-section-diagonal {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    background: linear-gradient(125deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 100px 80px;
    transform: skewY(-2deg);
    margin: 120px 0;
}

.form-section-diagonal > * {
    transform: skewY(2deg);
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
}

.form-container-offset h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.form-intro {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.selected-service-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.selected-service-box p {
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}

.selected-service-box span {
    font-weight: 600;
    color: #ffd700;
}

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

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

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s;
}

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

.submit-btn {
    padding: 16px 40px;
    background: #ffd700;
    color: #0f2027;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.form-visual-block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 80px;
}

.trust-indicator {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicator h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.trust-indicator p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.science-backed {
    padding: 100px 80px;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
}

.science-backed h2 {
    font-size: 2.5rem;
    color: #0f2027;
    margin-bottom: 30px;
}

.science-backed p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 50px;
}

.science-backed a {
    color: #0066cc;
    text-decoration: underline;
}

.references-section {
    margin-top: 60px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.references-section h3 {
    font-size: 1.5rem;
    color: #0f2027;
    margin-bottom: 20px;
}

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

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

.references-list a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.references-list a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.disclaimer-section {
    padding: 80px 80px;
    background: #fff3cd;
}

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

.disclaimer-box h3 {
    font-size: 1.8rem;
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 1rem;
    color: #856404;
    line-height: 1.8;
}

.footer-asymmetric {
    background: #0f2027;
    color: white;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    transform: translateX(40px);
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 32, 39, 0.98);
    padding: 25px 40px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    color: white;
    font-size: 1rem;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #0066cc;
    color: white;
}

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

.cookie-btn.reject {
    background: #666;
    color: white;
}

.cookie-btn.reject:hover {
    background: #555;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.thanks-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thanks-box h1 {
    font-size: 2.8rem;
    color: #0f2027;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-box .selected-service-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thanks-box .selected-service-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

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

.back-home-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-home-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.simple-page {
    padding: 150px 80px 80px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.simple-page h1 {
    font-size: 3rem;
    color: #0f2027;
    margin-bottom: 30px;
}

.simple-page h2 {
    font-size: 2rem;
    color: #0f2027;
    margin: 40px 0 20px;
}

.simple-page h3 {
    font-size: 1.5rem;
    color: #203a43;
    margin: 30px 0 15px;
}

.simple-page p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.simple-page ul {
    margin: 20px 0 20px 40px;
}

.simple-page ul li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.contact-content {
    padding: 150px 80px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 3rem;
    color: #0f2027;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    color: #0f2027;
    margin-bottom: 10px;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 40px 60px;
    }

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-visual-block {
        transform: none;
        width: 100%;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
        gap: 60px;
    }

    .offset-text-block {
        padding-left: 0;
    }

    .offset-image-right {
        transform: none;
    }

    .form-section-diagonal {
        flex-direction: column;
        padding: 80px 40px;
    }

    .form-visual-block {
        padding-left: 0;
        padding-top: 60px;
    }

    .floating-nav {
        top: 15px;
        right: 15px;
        left: 15px;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 40px;
        transform: none;
    }
}