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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.ad-disclosure {
    background: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    font-size: 15px;
    color: #333;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    padding: 40px 5%;
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f2ff 100%);
}

.hero-offset-content {
    margin-left: 8%;
    margin-top: 60px;
    max-width: 600px;
}

.hero-title-large {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-visual-block {
    margin-top: -80px;
    margin-left: auto;
    max-width: 700px;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #0066cc;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #fff;
}

.cta-inline {
    color: #0066cc;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: #0052a3;
    border-color: #0052a3;
}

.intro-staggered {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.intro-text-narrow {
    max-width: 550px;
    margin-right: auto;
}

.intro-text-narrow h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

.intro-card-offset {
    margin-left: auto;
    max-width: 400px;
    width: 100%;
}

.highlight-card {
    background: #0066cc;
    color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
}

.card-number {
    font-size: 64px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 18px;
    line-height: 1.4;
}

.visual-story {
    display: flex;
    flex-direction: column;
    padding: 60px 5%;
    gap: 40px;
    background: #fafafa;
}

.story-image-left {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.story-content-right {
    max-width: 550px;
    margin-left: auto;
}

.story-content-right h3 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 17px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
}

.services-asymmetric {
    padding: 80px 5%;
    background: #fff;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 50px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 18px;
    color: #555;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 5%;
}

.service-card {
    background: #f8f8f8;
    padding: 35px 30px;
    border-radius: 10px;
    flex: 1 1 280px;
    max-width: 350px;
    position: relative;
    transition: all 0.3s;
}

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

.service-card.large-card {
    flex: 1 1 400px;
    max-width: 450px;
    background: linear-gradient(135deg, #e6f2ff 0%, #f5f9ff 100%);
}

.service-card.featured-card {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.service-card.featured-card p {
    color: rgba(255, 255, 255, 0.95);
}

.price-tag {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0;
}

.service-card.featured-card .price-tag {
    color: #fff;
}

.select-service-btn {
    width: 100%;
    padding: 14px 20px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-card.featured-card .select-service-btn {
    background: #fff;
    color: #0066cc;
}

.service-card.featured-card .select-service-btn:hover {
    background: #f0f0f0;
}

.trust-block-offset {
    display: flex;
    flex-direction: column;
    padding: 70px 5%;
    gap: 40px;
    background: #fafafa;
}

.trust-content {
    max-width: 600px;
}

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.trust-visual {
    max-width: 500px;
    margin-left: auto;
    border-radius: 12px;
    overflow: hidden;
}

.form-section-creative {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 50px;
    background: #fff;
}

.form-container-offset {
    max-width: 550px;
    margin-right: auto;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 40px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-side-visual {
    max-width: 500px;
    margin-left: auto;
    border-radius: 12px;
    overflow: hidden;
}

.testimonials-scattered {
    padding: 80px 5%;
    background: #f5f9ff;
}

.testimonials-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card.offset-left {
    margin-right: 15%;
}

.testimonial-card.offset-right {
    margin-left: 15%;
}

.testimonial-card.offset-center {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #0066cc;
    font-weight: 600;
}

.final-cta-block {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
}

.cta-content-asymmetric {
    max-width: 700px;
    margin-left: 10%;
}

.cta-content-asymmetric h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.cta-content-asymmetric p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #0066cc;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

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

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

.footer-col h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

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

.footer-col a {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #0066cc;
}

.footer-disclaimer {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 25px 5%;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 14px;
    text-align: center;
}

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 30px;
    background: #0066cc;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s;
    z-index: 90;
}

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f2ff 100%);
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.about-story-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 50px;
}

.story-block-wide {
    max-width: 750px;
}

.story-block-wide h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-block-wide p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image-offset {
    max-width: 600px;
    margin-left: auto;
    border-radius: 12px;
    overflow: hidden;
}

.values-section {
    padding: 80px 5%;
    background: #fafafa;
}

.values-section h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-item.offset {
    margin-left: 10%;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.team-intro {
    padding: 70px 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-intro h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-description {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.commitment-block {
    display: flex;
    flex-direction: column;
    padding: 70px 5%;
    gap: 40px;
    background: #fafafa;
}

.commitment-visual {
    max-width: 550px;
    border-radius: 12px;
    overflow: hidden;
}

.commitment-text {
    max-width: 600px;
    margin-left: auto;
}

.commitment-text h3 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.commitment-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

.cta-about {
    padding: 80px 5%;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.services-detailed {
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #fafafa;
    padding: 40px 5%;
    border-radius: 12px;
}

.service-detail-card.reverse {
    background: #fff;
}

.service-detail-card.featured-service {
    background: linear-gradient(135deg, #e6f2ff 0%, #f5f9ff 100%);
}

.service-visual {
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    color: #555;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-large {
    font-size: 40px;
    font-weight: 800;
    color: #0066cc;
}

.additional-info-section {
    padding: 80px 5%;
    background: #fafafa;
}

.additional-info-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-block {
    flex: 1 1 300px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.info-block h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.services-cta {
    padding: 80px 5%;
    text-align: center;
    background: #fff;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}

.contact-layout-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 70px 5%;
    gap: 50px;
}

.contact-info-primary {
    max-width: 600px;
}

.contact-info-primary h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-primary p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-value {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.contact-visual-block {
    max-width: 500px;
    margin-left: auto;
    border-radius: 12px;
    overflow: hidden;
}

.contact-additional-info {
    padding: 70px 5%;
    background: #fafafa;
}

.contact-additional-info h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    flex: 1 1 280px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.contact-cta {
    padding: 70px 5%;
    text-align: center;
}

.contact-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-hero {
    padding: 100px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service-display {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 17px;
    color: #0066cc;
    background: #e6f2ff;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
}

.next-steps {
    text-align: left;
    margin: 40px auto;
    max-width: 500px;
}

.next-steps h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    font-size: 16px;
    color: #444;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.steps-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content li {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 15px;
    color: #666;
}

@media (min-width: 768px) {
    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .hero-visual-block {
        margin-top: 0;
    }

    .intro-staggered {
        flex-direction: row;
        align-items: flex-start;
    }

    .visual-story {
        flex-direction: row;
        align-items: center;
    }

    .trust-block-offset {
        flex-direction: row;
        align-items: center;
    }

    .form-section-creative {
        flex-direction: row;
    }

    .testimonials-layout {
        gap: 50px;
    }

    .about-story-asymmetric {
        flex-direction: row;
        align-items: flex-start;
    }

    .commitment-block {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

    .service-visual {
        max-width: 50%;
    }

    .contact-layout-asymmetric {
        flex-direction: row;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-offset-content {
        margin-left: 0;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .services-grid-irregular {
        margin-left: 0;
    }

    .cta-content-asymmetric {
        margin-left: 0;
    }

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

    .value-item.offset {
        margin-left: 0;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        font-size: 14px;
        padding: 14px 24px;
    }
}