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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
    border-left: 1px solid #bdc3c7;
    padding-left: 1.5rem;
}

.hero-asymmetric {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 2rem 2rem;
}

.hero-offset-content {
    width: 55%;
    padding: 4rem;
    position: relative;
    z-index: 10;
}

.hero-text-block {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 60%;
    height: 70%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
}

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

.intro-diagonal {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    position: relative;
    overflow: hidden;
}

.diagonal-wrapper {
    transform: skewY(-2deg);
    padding: 4rem 0;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.services-irregular {
    padding: 6rem 2rem;
    background: #fff;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 15%;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 1.25rem;
    color: #7f8c8d;
}

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

.service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.trust-overlap {
    padding: 6rem 2rem;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: #fff;
    position: relative;
}

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

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    color: #ecf0f1;
}

.testimonials-staggered {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.testimonials-staggered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonials-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-left {
    margin-right: 20%;
}

.testimonial-right {
    margin-left: 20%;
}

.testimonial-center {
    margin: 0 10%;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
}

.form-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ecf0f1, #d5dbdb);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    margin-left: 25%;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.science-section {
    padding: 6rem 2rem;
    background: #fff;
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: #f8f9fa;
    border-left: 5px solid #3498db;
    border-radius: 8px;
}

.science-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.science-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1rem;
}

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

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

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

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

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
}

.footer-references h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
}

.about-hero {
    padding: 150px 2rem 4rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1rem;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-page {
    padding: 150px 2rem 4rem;
}

.services-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-page {
    padding: 150px 2rem 4rem;
    min-height: 100vh;
}

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

.contact-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #7f8c8d;
}

.contact-item p {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.thanks-container {
    max-width: 600px;
    background: #fff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #fff;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 150px 2rem 4rem;
    min-height: 100vh;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        top: 0;
        margin-top: 2rem;
        border-radius: 20px;
    }

    .form-container {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        top: 10px;
        padding: 1rem;
    }

    .nav-items {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .ad-label {
        border-left: none;
        border-top: 1px solid #bdc3c7;
        padding-left: 0;
        padding-top: 1rem;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-text-block p {
        font-size: 1rem;
    }

    .services-header-offset {
        padding-left: 0;
    }

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

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        margin: 0;
    }

    .cookie-content {
        flex-direction: column;
    }
}