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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    top: 40px;
    right: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

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

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

.hero-asymmetric {
    margin-top: 110px;
    min-height: 85vh;
    display: flex;
    position: relative;
    background-color: #f8f9fa;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 50px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

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

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

.hero-image-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #34495e;
}

.intro-staggered {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.intro-block-left {
    flex: 1;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-block-right {
    flex: 1;
    background-color: #e9ecef;
}

.intro-block-right img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-section-irregular {
    padding: 120px 80px;
    background-color: #f1f3f5;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.problem-content {
    flex: 1.2;
}

.problem-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.problem-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.problem-visual-offset {
    flex: 0.8;
    margin-top: 60px;
    background-color: #dee2e6;
}

.problem-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-asymmetric {
    padding: 100px 120px 100px 200px;
    background-color: #2c3e50;
    color: #ffffff;
}

.insight-block h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-block p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.services-preview-offset {
    padding: 120px 80px;
    background-color: #ffffff;
}

.section-title-irregular {
    font-size: 44px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
    padding-left: 40px;
}

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

.service-card {
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card.card-1,
.service-card.card-4 {
    flex: 1 1 calc(55% - 20px);
}

.service-card.card-2,
.service-card.card-5 {
    flex: 1 1 calc(45% - 20px);
}

.service-card.card-3 {
    flex: 1 1 100%;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 30px 15px 30px;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 30px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    margin: 0 30px 30px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-irregular {
    padding: 100px 80px;
    background-color: #ecf0f1;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 120px;
}

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

.form-container-offset > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: #d1ecf1;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #0c5460;
}

.service-display {
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-section-staggered {
    padding: 100px 80px;
    background-color: #ffffff;
}

.trust-section-staggered h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
    padding: 30px;
}

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

.trust-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.testimonial-irregular {
    padding: 80px 150px;
    background-color: #34495e;
    color: #ffffff;
}

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 17px;
    font-style: normal;
    opacity: 0.9;
}

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

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

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

.footer-block p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
}

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

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

.footer-block ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-block ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 50px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

.about-hero-offset {
    margin-top: 110px;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    max-width: 700px;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 19px;
    line-height: 1.7;
}

.about-hero-offset img {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.story-section-irregular {
    padding: 100px 80px;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.story-block-left {
    flex: 1;
}

.story-block-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-visual-right {
    flex: 1;
    background-color: #e9ecef;
}

.story-visual-right img {
    width: 100%;
    height: auto;
    display: block;
}

.values-asymmetric {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item.item-1,
.value-item.item-3 {
    flex: 1 1 calc(60% - 20px);
}

.value-item.item-2,
.value-item.item-4 {
    flex: 1 1 calc(40% - 20px);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.approach-section-staggered {
    padding: 100px 150px;
    background-color: #ecf0f1;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
}

.team-highlight-irregular {
    padding: 100px 80px;
    background-color: #2c3e50;
    color: #ffffff;
    position: relative;
}

.team-intro {
    max-width: 700px;
    margin-bottom: 50px;
}

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
}

.team-highlight-irregular img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-about-offset {
    padding: 100px 80px;
    background-color: #f1f3f5;
    text-align: center;
}

.cta-about-offset h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-about-offset p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2980b9;
}

.services-hero-irregular {
    margin-top: 110px;
    padding: 120px 80px 80px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero-irregular h1 {
    font-size: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-hero-irregular p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-offset {
    padding: 80px 80px;
    background-color: #ffffff;
}

.service-detail-offset.reverse {
    background-color: #f8f9fa;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
}

.service-detail-offset:nth-child(even) .service-detail-content {
    margin-left: auto;
}

.service-detail-header {
    background-color: #e9ecef;
}

.service-detail-header img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-header h2 {
    font-size: 36px;
    padding: 35px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-body {
    padding: 0 35px 35px 35px;
}

.service-detail-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-body ul {
    margin: 25px 0 25px 25px;
}

.service-detail-body ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin: 30px 0;
}

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.services-cta-section {
    padding: 100px 80px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.services-cta-section p {
    font-size: 19px;
    margin-bottom: 40px;
}

.cta-primary-large {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary-large:hover {
    background-color: #229954;
}

.contact-hero-asymmetric {
    margin-top: 110px;
    padding: 100px 80px 60px 120px;
    background-color: #f8f9fa;
    max-width: 900px;
}

.contact-hero-asymmetric h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero-asymmetric p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.contact-content-irregular {
    padding: 80px 80px;
    display: flex;
    gap: 100px;
    background-color: #ffffff;
}

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

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 45px;
}

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

.contact-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    margin-top: 15px;
    font-size: 15px;
    font-style: italic;
    color: #6c757d;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e9ecef;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    padding: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.contact-approach-section {
    padding: 100px 80px;
    background-color: #f1f3f5;
}

.contact-approach-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

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

.approach-step {
    flex: 1 1 calc(50% - 20px);
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-cta-irregular {
    padding: 100px 80px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.contact-cta-irregular p {
    font-size: 19px;
    margin-bottom: 40px;
}

.thanks-hero-centered {
    margin-top: 110px;
    padding: 100px 80px;
    background-color: #f8f9fa;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

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

.thanks-service-info {
    background-color: #d1ecf1;
    padding: 20px 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #0c5460;
    margin-bottom: 5px;
}

.service-selected {
    font-size: 20px;
    font-weight: 700;
    color: #0c5460;
    margin-top: 10px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-next-steps ul {
    margin-left: 25px;
    margin-bottom: 40px;
}

.thanks-next-steps ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.thanks-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.legal-page-content {
    margin-top: 110px;
    padding: 100px 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
}

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

.legal-page-content h1 {
    font-size: 46px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 700;
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.legal-page-content ul {
    margin: 20px 0 20px 30px;
}

.legal-page-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

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

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

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-image-overlay {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-staggered,
    .problem-section-irregular,
    .story-section-irregular,
    .contact-content-irregular {
        flex-direction: column;
    }

    .services-grid-asymmetric .service-card {
        flex: 1 1 100%;
    }

    .trust-grid,
    .approach-steps-irregular {
        flex-direction: column;
    }

    .thanks-hero-centered {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .section-title-irregular,
    .values-asymmetric h2 {
        font-size: 32px;
    }

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

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