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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background-color: #3498db;
    color: #ffffff;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #2980b9;
}

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

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

.hero-asymmetric {
    margin-top: 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-offset-content {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
}

.hero-image-block {
    flex: 1;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(-30px);
}

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

.intro-section {
    padding: 100px 30px;
}

.content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.text-column-narrow {
    flex: 1.2;
}

.text-column-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.text-column-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-card {
    flex: 0.8;
    padding: 30px;
    border-radius: 15px;
    transform: translateY(50px);
}

.insight-card img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.insight-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.insight-text p {
    font-size: 16px;
    line-height: 1.7;
}

.offset-visual-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.overlapping-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
}

.block-image {
    flex: 1;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateX(-40px);
}

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

.block-text {
    flex: 1;
    padding: 40px;
}

.block-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.block-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.btn-inline {
    display: inline-block;
    margin-top: 15px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s;
}

.btn-inline:hover {
    color: #2980b9;
    text-decoration: underline;
}

.services-preview {
    padding: 100px 30px;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    margin-left: 120px;
}

.services-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card-small {
    flex: 0 0 calc(30% - 20px);
    padding: 35px;
    border-radius: 15px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-large {
    flex: 0 0 calc(40% - 20px);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-card-large img {
    width: 100%;
    height: 200px;
    display: block;
}

.service-content {
    padding: 35px;
}

.service-card-small h3,
.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-small p,
.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 15px;
}

.cta-centered {
    text-align: center;
    margin-top: 60px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.form-section-asymmetric {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
}

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 18px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.asymmetric-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-row {
    display: flex;
    gap: 25px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #34495e;
}

.insight-final {
    padding: 100px 30px;
    color: #ffffff;
}

.final-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-content h2 {
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: 700;
}

.final-content p {
    font-size: 20px;
    line-height: 1.8;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 30px;
}

.footer-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    color: #bdc3c7;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-copy {
    margin-top: 20px;
}

.page-header-offset {
    margin-top: 120px;
    padding: 80px 30px 60px;
    background-color: #f8f9fa;
}

.header-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 10%;
}

.header-content-irregular h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.lead {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
}

.services-detail-section {
    padding: 80px 30px;
}

.services-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 50px;
    border-radius: 20px;
}

.service-image {
    flex: 1;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-service {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #2980b9;
}

.cta-section-offset {
    padding: 100px 30px;
    color: #ffffff;
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto;
    margin-right: 15%;
    text-align: right;
}

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

.cta-content-irregular p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-primary-light {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary-light:hover {
    background-color: #ecf0f1;
}

.about-hero-offset {
    margin-top: 100px;
    padding: 60px 30px;
}

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

.about-image-block {
    flex: 0.9;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(40px);
}

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

.about-text-offset {
    flex: 1.1;
}

.about-text-offset h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-lead {
    font-size: 20px;
    line-height: 1.8;
}

.philosophy-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.philosophy-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.philosophy-block {
    flex: 1.3;
}

.philosophy-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.philosophy-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-visual {
    flex: 0.7;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-offset-section {
    padding: 100px 30px;
}

.section-title-irregular {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.values-grid-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 0 0 calc(33% - 20px);
    padding: 35px;
    border-radius: 15px;
    min-height: 220px;
}

.value-card-large {
    flex: 0 0 calc(67% - 20px);
    padding: 35px;
    border-radius: 15px;
}

.value-card h3,
.value-card-large h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p,
.value-card-large p {
    font-size: 16px;
    line-height: 1.7;
}

.team-section-irregular {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.team-content-offset {
    max-width: 700px;
    margin: 0 auto 50px;
    margin-left: 20%;
}

.team-content-offset h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-content-offset p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-visual-block {
    max-width: 900px;
    height: 450px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.team-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.experience-section {
    padding: 100px 30px;
}

.experience-irregular {
    max-width: 900px;
    margin: 0 auto;
}

.experience-irregular h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.experience-irregular p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.experience-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #7f8c8d;
}

.cta-about-section {
    padding: 100px 30px;
    color: #ffffff;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-about-content p {
    font-size: 19px;
    margin-bottom: 30px;
}

.contact-hero-irregular {
    margin-top: 100px;
    padding: 80px 30px 60px;
}

.contact-layout-offset {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
}

.contact-text-block h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
}

.contact-info-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.contact-asymmetric-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #3498db;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
}

.contact-visual-block {
    flex: 1;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note-section {
    padding: 100px 30px;
}

.contact-note-irregular {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-note-irregular h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.steps-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-block {
    flex: 0 0 calc(50% - 20px);
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.step-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 15px;
}

.step-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-block p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-additional-section {
    padding: 100px 30px;
}

.additional-info-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-right: 15%;
}

.additional-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-irregular {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
}

.faq-item a {
    color: #3498db;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.final-cta-contact {
    padding: 100px 30px;
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 19px;
    margin-bottom: 30px;
}

.thanks-section {
    margin-top: 100px;
    padding: 80px 30px;
    min-height: 80vh;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.thanks-service {
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 17px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-steps {
    list-style: none;
    margin-bottom: 40px;
}

.thanks-steps li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-visual {
    flex: 0.8;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    margin-top: 100px;
    padding: 80px 30px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
}

.legal-intro {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #34495e;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dfe6e9;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 700;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #dfe6e9;
    font-size: 14px;
    color: #7f8c8d;
}

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

    .hero-offset-content,
    .content-irregular,
    .overlapping-blocks,
    .services-asymmetric,
    .service-detail-card,
    .philosophy-asymmetric,
    .about-irregular-layout,
    .contact-asymmetric-grid,
    .thanks-container {
        flex-direction: column;
    }

    .hero-text-block h1,
    .header-content-irregular h1,
    .contact-text-block h1 {
        font-size: 36px;
    }

    .service-card-small,
    .service-card-large,
    .value-card,
    .value-card-large,
    .step-block {
        flex: 0 0 100%;
    }

    .section-title-offset,
    .form-container-offset,
    .contact-layout-offset,
    .additional-info-offset,
    .cta-content-irregular,
    .team-content-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .form-row {
        flex-direction: column;
    }

    .experience-stats {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}