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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    padding: 4px 10px;
    background: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav a:hover {
    color: #2c5282;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-asymmetric {
    margin-top: 80px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8f9fa;
}

.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 60px 40px;
    margin-left: 60px;
}

.hero-text-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 800;
}

.hero-text-offset p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5282;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2a4365;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.intro-asymmetric {
    padding: 100px 0;
    background: white;
}

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

.intro-text-block {
    flex: 1;
    padding-left: 80px;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-image-offset {
    flex: 1;
    position: relative;
    margin-right: -100px;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.services-creative {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 40px;
    color: white;
}

.section-header-offset h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

.section-header-offset p {
    font-size: 18px;
    opacity: 0.9;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

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

.card-small {
    flex: 1 1 calc(35% - 15px);
}

.card-wide {
    flex: 1 1 calc(65% - 15px);
    margin-top: -30px;
}

.card-medium {
    flex: 1 1 calc(48% - 15px);
}

.card-accent {
    flex: 1 1 calc(52% - 15px);
    margin-top: 50px;
}

.service-image {
    height: 220px;
    overflow: hidden;
    background-color: #cbd5e0;
}

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

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

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

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 15px;
}

.btn-select {
    padding: 12px 24px;
    background: #48bb78;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-select:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.cta-floating {
    padding: 80px 0;
    background: #f7fafc;
    display: flex;
    justify-content: flex-end;
    padding-right: 10%;
}

.cta-box {
    background: linear-gradient(135deg, #fc5c7d 0%, #6a82fb 100%);
    padding: 50px 60px;
    border-radius: 12px;
    color: white;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: white;
    color: #6a82fb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.trust-section {
    padding: 100px 0;
    background: white;
}

.trust-layout-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.trust-points {
    list-style: none;
}

.trust-points li {
    font-size: 16px;
    color: #2c5282;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.trust-points li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 20px;
}

.trust-stats-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.stat-block:nth-child(2) {
    transform: rotate(-3deg);
    margin-left: 40px;
}

.stat-block:hover {
    transform: rotate(0deg);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.booking-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-wrapper-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 20px 20px 0 rgba(44, 82, 130, 0.1);
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 35px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a202c;
}

.form-intro p {
    font-size: 16px;
    color: #4a5568;
}

.service-display {
    background: #edf2f7;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #2c5282;
}

.service-display p {
    margin: 0;
    color: #2c5282;
    font-weight: 600;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5282;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2a4365;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background: #edf2f7;
}

.disclaimer {
    font-size: 13px;
    color: #718096;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.98);
    color: white;
    padding: 20px;
    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;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #48bb78;
    color: white;
}

.btn-accept:hover {
    background: #38a169;
}

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

.btn-reject:hover {
    background: white;
    color: #1a202c;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
    }

    .hero-text-offset {
        margin-left: 0;
        padding: 40px 20px;
    }

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

    .intro-layout {
        flex-direction: column;
        gap: 40px;
    }

    .intro-text-block {
        padding-left: 20px;
    }

    .intro-image-offset {
        margin-right: 0;
    }

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

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

    .trust-layout-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .stat-block:nth-child(2) {
        margin-left: 0;
    }

    .form-wrapper-asymmetric {
        margin-left: 0;
        padding: 30px 20px;
    }

    .footer-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}