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

.floating-nav {
    position: fixed;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.nav-items a:hover {
    color: #1a5f7a;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    border-top: 1px solid #ecf0f1;
    padding-top: 10px;
    margin-top: 5px;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 60px 100px 80px;
    overflow: hidden;
}

.hero-text-offset {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-top: -80px;
}

.hero-text-offset h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a5f7a;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 18px;
    color: #566573;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 120px;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #144d61;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #1a5f7a;
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid #1a5f7a;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.cta-secondary:hover {
    background: #1a5f7a;
    color: #ffffff;
}

.intro-offset {
    display: flex;
    padding: 120px 80px;
    gap: 80px;
    align-items: flex-start;
    background: #f8f9fa;
}

.intro-block-left {
    flex: 1;
    margin-top: 60px;
}

.intro-block-left h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.intro-image-right {
    flex: 1;
    margin-top: -40px;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #ecf0f1;
    object-fit: cover;
}

.services-asymmetric {
    padding: 100px 80px;
    background: #ffffff;
}

.section-header-overlap {
    margin-left: 120px;
    margin-bottom: 60px;
}

.section-header-overlap h2 {
    font-size: 48px;
    color: #1a5f7a;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header-overlap p {
    font-size: 17px;
    color: #566573;
    max-width: 600px;
}

.services-grid-irregular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-offset-1 {
    margin-top: 40px;
}

.service-offset-2 {
    margin-top: -20px;
}

.service-offset-3 {
    margin-top: 60px;
}

.service-offset-4 {
    margin-top: 0;
}

.service-offset-5 {
    margin-top: -40px;
}

.service-offset-6 {
    margin-top: 20px;
}

.service-image-bg {
    height: 240px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

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

.service-price {
    font-size: 28px;
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    color: #566573;
    line-height: 1.7;
    margin-bottom: 20px;
}

.select-service-btn {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background: #144d61;
    transform: translateY(-2px);
}

.form-container-offset {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-left: 150px;
}

.form-container-offset h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.selected-service-display {
    font-size: 16px;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 30px;
}

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

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

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

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

.btn-submit {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.trust-section-diagonal {
    padding: 100px 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #144d61 100%);
    position: relative;
}

.trust-content-overlap {
    max-width: 800px;
    margin-left: 100px;
    color: #ffffff;
}

.trust-content-overlap h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-content-overlap p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.trust-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

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

.process-section-overlap {
    padding: 120px 80px;
    background: #f8f9fa;
}

.process-section-overlap h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 70px;
    margin-left: 80px;
    font-weight: 700;
}

.process-blocks-irregular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.process-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.process-pos-1 {
    margin-top: 0;
}

.process-pos-2 {
    margin-top: 60px;
}

.process-pos-3 {
    margin-top: 40px;
}

.process-pos-4 {
    margin-top: -20px;
}

.process-number {
    font-size: 64px;
    font-weight: 800;
    color: #ecf0f1;
    display: block;
    margin-bottom: 15px;
}

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

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

.final-cta-asymmetric {
    padding: 100px 80px;
    background: #ffffff;
}

.cta-content-offset {
    max-width: 700px;
    margin-left: 150px;
    text-align: left;
}

.cta-content-offset h2 {
    font-size: 48px;
    color: #1a5f7a;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 18px;
    color: #566573;
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.footer-content-irregular {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 30px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

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

.btn-accept {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-accept:hover {
    background: #144d61;
}

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

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

.about-hero-offset {
    padding: 180px 80px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.about-text-diagonal {
    max-width: 700px;
    margin-left: 100px;
}

.about-text-diagonal h1 {
    font-size: 56px;
    color: #1a5f7a;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text-diagonal p {
    font-size: 19px;
    color: #566573;
    line-height: 1.8;
}

.about-story-asymmetric {
    display: flex;
    gap: 80px;
    padding: 100px 80px;
    align-items: center;
}

.story-image-overlap {
    flex: 1;
    margin-top: -60px;
}

.story-image-overlap img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background-color: #ecf0f1;
    object-fit: cover;
}

.story-content-offset {
    flex: 1;
    margin-top: 40px;
}

.story-content-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content-offset p {
    font-size: 16px;
    color: #566573;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section-irregular {
    padding: 100px 80px;
    background: #f8f9fa;
}

.values-section-irregular h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 60px;
    margin-left: 60px;
    font-weight: 700;
}

.values-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.value-pos-1 {
    margin-top: 0;
}

.value-pos-2 {
    margin-top: 50px;
}

.value-pos-3 {
    margin-top: 30px;
}

.value-pos-4 {
    margin-top: -20px;
}

.value-card h3 {
    font-size: 26px;
    color: #1a5f7a;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.team-section-offset {
    padding: 100px 80px;
    background: #ffffff;
}

.team-header-diagonal {
    margin-left: 120px;
    margin-bottom: 60px;
}

.team-header-diagonal h2 {
    font-size: 48px;
    color: #1a5f7a;
    font-weight: 700;
}

.team-content-irregular {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

.team-offset-1 {
    margin-top: 20px;
}

.team-offset-2 {
    margin-top: -30px;
}

.team-offset-3 {
    margin-top: 40px;
}

.team-member h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-role {
    font-size: 14px;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 14px;
    color: #566573;
    line-height: 1.7;
}

.expertise-section-diagonal {
    padding: 100px 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #144d61 100%);
    color: #ffffff;
}

.expertise-section-diagonal h2 {
    font-size: 48px;
    margin-bottom: 60px;
    margin-left: 80px;
    font-weight: 700;
}

.expertise-blocks-irregular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.expertise-pos-1 {
    margin-top: 0;
}

.expertise-pos-2 {
    margin-top: 40px;
}

.expertise-pos-3 {
    margin-top: 20px;
}

.expertise-pos-4 {
    margin-top: -20px;
}

.expertise-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-about-asymmetric {
    padding: 100px 80px;
    background: #f8f9fa;
}

.cta-about-content {
    max-width: 700px;
    margin-left: 130px;
}

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

.cta-about-content p {
    font-size: 17px;
    color: #566573;
    margin-bottom: 30px;
}

.services-hero-diagonal {
    padding: 180px 80px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    margin-left: 100px;
}

.services-hero-diagonal h1 {
    font-size: 56px;
    color: #1a5f7a;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-intro {
    font-size: 18px;
    color: #566573;
    max-width: 700px;
    line-height: 1.8;
}

.services-detail-asymmetric {
    padding: 80px 80px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail-pos-1 {
    margin-top: 0;
}

.service-detail-pos-2 {
    margin-top: 40px;
}

.service-detail-pos-3 {
    margin-top: -20px;
}

.service-detail-pos-4 {
    margin-top: 60px;
}

.service-detail-pos-5 {
    margin-top: 20px;
}

.service-detail-pos-6 {
    margin-top: -40px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #ecf0f1;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-price {
    font-size: 32px;
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #566573;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

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

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.service-cta:hover {
    background: #144d61;
    transform: translateY(-2px);
}

.services-packages-offset {
    padding: 80px 80px;
    background: #f8f9fa;
}

.services-packages-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-left: 80px;
    font-weight: 700;
}

.services-packages-offset > p {
    font-size: 17px;
    color: #566573;
    margin-bottom: 50px;
    margin-left: 80px;
}

.packages-grid-irregular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

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

.package-pos-1 {
    margin-top: 30px;
}

.package-pos-2 {
    margin-top: -20px;
}

.package-card h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-price {
    font-size: 36px;
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-card li {
    font-size: 15px;
    color: #566573;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.package-savings {
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}

.services-faq-asymmetric {
    padding: 100px 80px;
    background: #ffffff;
}

.services-faq-asymmetric h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 60px;
    margin-left: 100px;
    font-weight: 700;
}

.faq-blocks-irregular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

.faq-pos-1 {
    margin-top: 0;
}

.faq-pos-2 {
    margin-top: 40px;
}

.faq-pos-3 {
    margin-top: 20px;
}

.faq-pos-4 {
    margin-top: -30px;
}

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

.faq-item p {
    font-size: 15px;
    color: #566573;
    line-height: 1.7;
}

.contact-hero-offset {
    padding: 180px 80px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    margin-left: 120px;
}

.contact-hero-offset h1 {
    font-size: 56px;
    color: #1a5f7a;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero-offset p {
    font-size: 18px;
    color: #566573;
    line-height: 1.8;
}

.contact-info-asymmetric {
    display: flex;
    gap: 70px;
    padding: 100px 80px;
}

.contact-block {
    flex: 1;
}

.contact-pos-1 {
    margin-top: 40px;
}

.contact-pos-2 {
    margin-top: -30px;
}

.contact-block h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-detail-item h3 {
    font-size: 18px;
    color: #1a5f7a;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail-item p {
    font-size: 15px;
    color: #566573;
    line-height: 1.7;
}

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

.contact-image-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #ecf0f1;
    object-fit: cover;
}

.contact-location-diagonal {
    padding: 100px 80px;
    background: #f8f9fa;
}

.contact-location-diagonal h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 30px;
    margin-left: 60px;
    font-weight: 700;
}

.location-content-offset {
    margin-left: 100px;
    max-width: 800px;
}

.location-content-offset p {
    font-size: 16px;
    color: #566573;
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-notes {
    margin-top: 40px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
}

.location-notes h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-notes ul {
    list-style: none;
}

.location-notes li {
    font-size: 15px;
    color: #566573;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.location-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.contact-projects-asymmetric {
    padding: 100px 80px;
    background: #ffffff;
}

.contact-projects-asymmetric h2 {
    font-size: 42px;
    color: #1a5f7a;
    margin-bottom: 50px;
    margin-left: 80px;
    font-weight: 700;
}

.inquiry-blocks-irregular {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.inquiry-block {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

.inquiry-pos-1 {
    margin-top: 0;
}

.inquiry-pos-2 {
    margin-top: 30px;
}

.inquiry-pos-3 {
    margin-top: -20px;
}

.inquiry-block h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.inquiry-block p {
    font-size: 14px;
    color: #566573;
    line-height: 1.7;
    margin-bottom: 15px;
}

.inquiry-link {
    display: inline-block;
    color: #1a5f7a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inquiry-link:hover {
    color: #144d61;
}

.contact-service-areas-offset {
    padding: 100px 80px;
    background: #f8f9fa;
}

.contact-service-areas-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-left: 100px;
    font-weight: 700;
}

.contact-service-areas-offset > p {
    font-size: 16px;
    color: #566573;
    margin-bottom: 40px;
    margin-left: 100px;
}

.areas-grid-irregular {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    margin-left: 100px;
}

.area-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
}

.areas-note {
    font-size: 14px;
    color: #566573;
    margin-left: 100px;
    font-style: italic;
}

.thanks-container-asymmetric {
    display: flex;
    gap: 80px;
    padding: 150px 80px 100px;
    align-items: center;
}

.thanks-content-offset {
    flex: 1.2;
}

.thanks-content-offset h1 {
    font-size: 52px;
    color: #1a5f7a;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: #566573;
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-details-diagonal {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.thanks-details-diagonal p {
    font-size: 16px;
    color: #566573;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-confirmation {
    font-size: 17px;
    color: #1a5f7a;
    font-weight: 600;
    margin-top: 20px;
}

.thanks-next-steps-irregular {
    margin-bottom: 50px;
}

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

.next-step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #1a5f7a;
    min-width: 50px;
}

.step-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    color: #566573;
    line-height: 1.7;
}

.thanks-contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 2px solid #ecf0f1;
}

.thanks-contact-info h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.thanks-contact-info p {
    font-size: 15px;
    color: #566573;
    line-height: 1.7;
}

.thanks-cta-offset {
    display: flex;
    gap: 15px;
}

.thanks-image-overlap {
    flex: 1;
    margin-top: -80px;
}

.thanks-image-overlap img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background-color: #ecf0f1;
    object-fit: cover;
}

.legal-content-asymmetric {
    padding: 150px 80px 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content-asymmetric h1 {
    font-size: 52px;
    color: #1a5f7a;
    margin-bottom: 15px;
    font-weight: 800;
}

.legal-intro {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

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

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

.legal-section p {
    font-size: 15px;
    color: #566573;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-section li {
    font-size: 15px;
    color: #566573;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #144d61;
}

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 80px 30px 60px;
    }

    .hero-text-offset {
        margin-top: 0;
    }

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        margin-top: 40px;
    }

    .intro-offset,
    .about-story-asymmetric,
    .contact-info-asymmetric,
    .thanks-container-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .services-grid-irregular,
    .process-blocks-irregular,
    .values-grid-asymmetric,
    .expertise-blocks-irregular,
    .faq-blocks-irregular,
    .packages-grid-irregular {
        grid-template-columns: 1fr;
    }

    .team-content-irregular,
    .inquiry-blocks-irregular {
        grid-template-columns: 1fr;
    }

    .service-detail-block {
        flex-direction: column;
    }

    .footer-content-irregular {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .areas-grid-irregular {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header-overlap,
    .form-container-offset,
    .trust-content-overlap,
    .cta-content-offset,
    .about-text-diagonal,
    .team-header-diagonal,
    .services-hero-diagonal,
    .contact-hero-offset,
    .location-content-offset {
        margin-left: 0;
    }
}
