* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafbfc;
}

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

.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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

.btn-cookie {
    background-color: #4ecdc4;
    color: #1a1a2e;
}

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

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

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

.nav-asymmetric {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand-section .brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    background-color: #ffe5e5;
    color: #d63031;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #4ecdc4;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.cta-primary:hover {
    background-color: #3db8af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.hero-image-right {
    flex: 1.2;
    position: relative;
    margin-top: -40px;
    background-color: #e8f4f3;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-overlap {
    max-width: 1400px;
    margin: -80px auto 100px;
    padding: 0 40px;
}

.intro-block-offset {
    background-color: #ffffff;
    padding: 60px 80px;
    margin-left: 15%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #4ecdc4;
}

.intro-block-offset h2 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-block-offset p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex-basis: calc(60% - 15px);
}

.card-medium {
    flex-basis: calc(40% - 15px);
}

.card-offset {
    flex-basis: calc(48% - 15px);
    margin-top: 40px;
}

.card-small {
    flex-basis: calc(52% - 15px);
    margin-top: -60px;
}

.card-wide {
    flex-basis: 100%;
    flex-direction: row;
    margin-top: 20px;
}

.card-vertical {
    flex-basis: calc(35% - 15px);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e8f4f3;
}

.card-medium img,
.card-small img,
.card-vertical img {
    height: 400px;
}

.card-wide img {
    width: 50%;
    height: 400px;
}

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

.card-wide .service-info {
    width: 50%;
    padding: 50px;
}

.service-info h3 {
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    color: #4ecdc4;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #4ecdc4;
    transform: translateX(5px);
}

.cta-floating {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
    margin: 100px 0;
}

.cta-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-irregular h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-content-irregular p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #4ecdc4;
    color: #ffffff;
    transform: scale(1.05);
}

.form-section-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container {
    background-color: #ffffff;
    padding: 60px;
    margin-left: 10%;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 36px;
}

.selected-service {
    background-color: #e8f4f3;
    padding: 16px 20px;
    margin-bottom: 30px;
    border-left: 4px solid #4ecdc4;
    font-weight: 600;
    color: #1a1a2e;
    display: none;
}

.selected-service.active {
    display: block;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
}

.btn-submit {
    background-color: #4ecdc4;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.trust-block {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.trust-content {
    background-color: #fff9e6;
    padding: 40px;
    border-left: 4px solid #f39c12;
}

.trust-content h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-weight: 700;
}

.trust-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

.footer-wide {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

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

.footer-col ul li a:hover {
    color: #4ecdc4;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #f39c12;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.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: #808080;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #4ecdc4;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-container .service-selected {
    background-color: #e8f4f3;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #4ecdc4;
    font-weight: 600;
    color: #1a1a2e;
}

.thanks-container .cta-primary {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left h1 {
        font-size: 42px;
    }

    .intro-block-offset {
        margin-left: 0;
    }

    .form-container {
        margin-left: 0;
    }

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

    .card-wide img,
    .card-wide .service-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .services-asymmetric .service-card {
        flex-basis: 100% !important;
        margin-top: 0 !important;
    }

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

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

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

.content-section h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin: 40px 0 20px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 30px 0 16px;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 30px;
    color: #546e7a;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info-box {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.contact-info-box h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-box p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info-box .email-display {
    color: #4ecdc4;
    font-weight: 600;
}