* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.nav-asymmetric {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    color: #1a5490;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5490;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-offset-left {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    width: 100%;
}

.hero-text-box {
    max-width: 600px;
    margin-left: 8%;
    background: white;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-30px);
}

.hero-text-box h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-box p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image-overlay {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 5;
    transform: rotate(-3deg);
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.btn-primary-offset {
    display: inline-block;
    background: #1a5490;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.btn-primary-offset:hover {
    background: #154070;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 84, 144, 0.4);
}

.intro-irregular {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.intro-block-left {
    flex: 1;
    min-width: 320px;
    transform: translateX(40px);
}

.intro-block-left h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

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

.intro-block-right {
    flex: 1;
    min-width: 320px;
    transform: translateY(-50px) rotate(2deg);
    background: #e8ecf1;
    padding: 1rem;
    border-radius: 8px;
}

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

.services-preview-stagger {
    background: #f8f9fa;
    padding: 7rem 3rem;
    position: relative;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 5rem auto;
    text-align: left;
    padding-left: 12%;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card-float {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 2rem);
    min-width: 300px;
    transition: all 0.3s;
}

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

.service-card-1 {
    transform: rotate(-1deg);
}

.service-card-2 {
    transform: translateY(30px) rotate(1deg);
}

.service-card-3 {
    transform: translateY(-20px) rotate(-0.5deg);
}

.service-card-4 {
    transform: rotate(1.5deg);
}

.service-card-5 {
    transform: translateY(25px) rotate(-1deg);
}

.service-card-6 {
    transform: translateY(-15px) rotate(0.5deg);
}

.service-card-float img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8ecf1;
}

.service-card-float h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 0.8rem 1.5rem;
    font-weight: 600;
}

.service-card-float p {
    color: #666;
    margin: 0 1.5rem 1rem 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.btn-service-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #1a5490;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.consultation-form-section {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-0.5deg);
}

.form-header-irregular {
    margin-bottom: 2.5rem;
}

.form-header-irregular h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.form-header-irregular p {
    color: #666;
    font-size: 1.05rem;
}

.form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group-offset {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-offset label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group-offset input,
.form-group-offset textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group-offset input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit-offset {
    padding: 1.1rem 2.5rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit-offset:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.trust-section-overlay {
    background: linear-gradient(135deg, #1a5490 0%, #154070 100%);
    color: white;
    padding: 7rem 3rem;
    position: relative;
}

.trust-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.testimonial-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial-offset {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-1 {
    transform: rotate(-1.5deg) translateY(-20px);
}

.testimonial-2 {
    transform: rotate(1deg) translateY(15px);
}

.testimonial-3 {
    transform: rotate(-0.5deg) translateY(-10px);
}

.testimonial-offset p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    opacity: 0.9;
}

.why-us-irregular {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.why-us-split {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.why-us-image-block {
    flex: 1;
    min-width: 320px;
    transform: translateY(40px) rotate(-2deg);
    background: #e8ecf1;
    padding: 1rem;
    border-radius: 8px;
}

.why-us-image-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.why-us-content-offset {
    flex: 1;
    min-width: 320px;
    transform: translateX(-30px);
}

.why-us-content-offset h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-us-content-offset p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list-offset {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list-offset li {
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefits-list-offset li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.disclaimer-section {
    background: #fef9e7;
    border-left: 5px solid #f39c12;
    padding: 3rem;
    margin: 0 auto;
    max-width: 1400px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    color: #7f6a00;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 5rem 3rem 2rem 3rem;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-block h3 {
    font-size: 1.5rem;
    color: #3498db;
}

.footer-block h4 {
    font-size: 1.1rem;
}

.footer-block p {
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.page-header-offset {
    max-width: 1400px;
    margin: 5rem auto 4rem auto;
    padding: 0 3rem;
    text-align: left;
    transform: translateX(8%);
}

.page-header-offset h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header-offset p {
    font-size: 1.3rem;
    color: #666;
}

.about-story-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.about-content-split {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    flex-wrap: wrap;
}

.about-text-block {
    flex: 1;
    min-width: 320px;
    transform: translateY(30px);
}

.about-text-block h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-offset {
    flex: 1;
    min-width: 320px;
    transform: translateY(-30px) rotate(1.5deg);
    background: #e8ecf1;
    padding: 1rem;
    border-radius: 8px;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.team-approach-section {
    background: #f8f9fa;
    padding: 6rem 3rem;
}

.team-approach-section h2 {
    max-width: 1400px;
    margin: 0 auto 4rem auto;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.approach-blocks-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.approach-block {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: calc(50% - 1.5rem);
    min-width: 300px;
}

.approach-1 {
    transform: rotate(-1deg);
}

.approach-2 {
    transform: translateY(30px) rotate(1deg);
}

.approach-3 {
    transform: translateY(-20px) rotate(-0.5deg);
}

.approach-4 {
    transform: rotate(0.5deg);
}

.approach-block h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-block p {
    color: #555;
    line-height: 1.7;
}

.values-overlay-section {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.values-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.values-list-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.value-item {
    width: calc(33.333% - 3rem);
    min-width: 260px;
    transform: translateY(20px);
}

.value-item:nth-child(1) {
    transform: rotate(-1deg) translateY(0);
}

.value-item:nth-child(2) {
    transform: rotate(1deg) translateY(30px);
}

.value-item:nth-child(3) {
    transform: rotate(-0.5deg) translateY(15px);
}

.value-item h3 {
    font-size: 1.6rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.expertise-stats {
    background: linear-gradient(135deg, #1a5490 0%, #154070 100%);
    color: white;
    padding: 6rem 3rem;
}

.stats-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.stat-block {
    text-align: center;
    width: calc(25% - 3rem);
    min-width: 200px;
}

.stat-1 {
    transform: translateY(-20px);
}

.stat-2 {
    transform: translateY(30px);
}

.stat-3 {
    transform: translateY(-10px);
}

.stat-4 {
    transform: translateY(20px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-offset-section {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.cta-content-irregular {
    background: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
    transform: rotate(-0.5deg);
}

.cta-content-irregular h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-irregular p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.services-detailed-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detail-irregular {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.service-detail-1 {
    flex-direction: row;
    transform: translateX(3%);
}

.service-detail-2 {
    flex-direction: row-reverse;
    transform: translateX(-3%);
}

.service-detail-3 {
    flex-direction: row;
    transform: translateX(5%);
}

.service-detail-4 {
    flex-direction: row-reverse;
    transform: translateX(-4%);
}

.service-detail-5 {
    flex-direction: row;
    transform: translateX(2%);
}

.service-detail-6 {
    flex-direction: row-reverse;
    transform: translateX(-2%);
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    transform: rotate(1deg);
    background: #e8ecf1;
    padding: 1rem;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.pricing-notes-section {
    background: #fef9e7;
    padding: 4rem 3rem;
    margin: 6rem auto;
    max-width: 1400px;
}

.pricing-notes-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-notes-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-notes-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.form-section-offset {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.contact-info-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.contact-layout-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.contact-block {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    width: calc(33.333% - 3rem);
    min-width: 300px;
}

.contact-block-1 {
    transform: rotate(-1deg);
}

.contact-block-2 {
    transform: translateY(30px) rotate(1deg);
}

.contact-block-3 {
    transform: translateY(-20px) rotate(-0.5deg);
}

.contact-block h2 {
    font-size: 1.6rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-detail {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-detail-email {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-time {
    color: #555;
}

.contact-approach-section {
    background: #f8f9fa;
    padding: 6rem 3rem;
}

.approach-content-offset {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content-offset h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.approach-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.approach-step {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: calc(50% - 1.5rem);
    min-width: 300px;
}

.step-1 {
    transform: rotate(-0.5deg);
}

.step-2 {
    transform: translateY(30px) rotate(0.5deg);
}

.step-3 {
    transform: translateY(-20px) rotate(-1deg);
}

.step-4 {
    transform: rotate(1deg);
}

.approach-step h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-step p {
    color: #555;
    line-height: 1.7;
}

.accessibility-info-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 3rem;
    background: #e8f4f8;
    border-left: 5px solid #3498db;
    border-radius: 8px;
}

.accessibility-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.accessibility-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quick-enquiry-section {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.quick-enquiry-content {
    background: linear-gradient(135deg, #1a5490 0%, #154070 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
    transform: rotate(-0.5deg);
}

.quick-enquiry-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quick-enquiry-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-hero-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.thanks-content-offset {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 5rem 3rem;
    border-radius: 8px;
    text-align: center;
    transform: rotate(-0.5deg);
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.thanks-content-offset h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.next-steps-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.next-steps-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.next-steps-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.timeline-step {
    width: calc(50% - 1.5rem);
    min-width: 300px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a5490;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.preparation-section {
    background: #f8f9fa;
    padding: 6rem 3rem;
}

.preparation-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
}

.preparation-content-irregular h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.preparation-content-irregular > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.preparation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.prep-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 2rem);
    min-width: 280px;
}

.prep-item h3 {
    font-size: 1.4rem;
    color: #1a5490;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.prep-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.prep-item ul li {
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.prep-item ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-reminder-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 3rem;
    background: #e8f4f8;
    border-left: 5px solid #3498db;
    border-radius: 8px;
}

.contact-reminder-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-reminder-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.browse-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.browse-content {
    text-align: center;
}

.browse-content h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.browse-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.browse-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-offset {
    display: inline-block;
    background: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary-offset:hover {
    background: #1a5490;
    color: white;
    transform: translateY(-3px);
}

.legal-page-header {
    max-width: 1400px;
    margin: 5rem auto 4rem auto;
    padding: 0 3rem;
    text-align: center;
}

.legal-page-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.legal-page-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.legal-content-section {
    max-width: 1200px;
    margin: 4rem auto 8rem auto;
    padding: 0 3rem;
}

.legal-content {
    background: white;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem 0;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 1200px) {
    .hero-image-overlay {
        right: -15%;
        width: 60%;
    }

    .service-card-float,
    .testimonial-offset,
    .value-item,
    .contact-block {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-asymmetric {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-text-box {
        margin-left: 0;
        padding: 2.5rem;
        transform: translateY(0);
    }

    .hero-text-box h1 {
        font-size: 2rem;
    }

    .hero-image-overlay {
        position: relative;
        right: 0;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
        transform: rotate(0);
    }

    .service-card-float,
    .testimonial-offset,
    .approach-block,
    .value-item,
    .stat-block,
    .contact-block,
    .prep-item {
        width: 100%;
        transform: none !important;
    }

    .form-container-offset {
        margin-left: 0;
        transform: rotate(0);
    }

    .section-header-offset {
        padding-left: 0;
        text-align: center;
    }

    .page-header-offset {
        transform: translateX(0);
        text-align: center;
    }

    .page-header-offset h1 {
        font-size: 2.2rem;
    }

    .intro-irregular,
    .about-content-split,
    .why-us-split,
    .service-detail-irregular {
        gap: 3rem;
    }

    .intro-block-left,
    .intro-block-right,
    .about-text-block,
    .about-image-offset,
    .why-us-image-block,
    .why-us-content-offset {
        transform: none !important;
    }

    .service-detail-irregular {
        flex-direction: column !important;
        transform: translateX(0) !important;
    }

    .service-detail-image {
        transform: rotate(0) !important;
    }

    .timeline-step {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text-box h1 {
        font-size: 1.6rem;
    }

    .section-header-offset h2,
    .trust-content-irregular h2 {
        font-size: 1.8rem;
    }

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