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

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

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    background-color: rgba(44, 62, 80, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateX(5px);
}

.hero-asymmetric {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    position: relative;
    margin-top: 35px;
}

.hero-content-offset {
    flex: 1;
    min-width: 400px;
    padding: 80px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    position: relative;
    z-index: 2;
}

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

.hero-content-offset p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 550px;
}

.hero-image-overlap {
    flex: 1.2;
    min-width: 450px;
    position: relative;
    margin-left: -80px;
    margin-top: 60px;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.3);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.intro-offset {
    display: flex;
    flex-wrap: wrap;
    margin: 100px 40px 80px 120px;
    gap: 50px;
}

.intro-block {
    flex: 1.3;
    min-width: 400px;
    padding: 60px 55px;
    border-radius: 0;
    transform: rotate(-1deg);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 17px;
    margin-bottom: 20px;
}

.intro-visual {
    flex: 1;
    min-width: 350px;
    min-height: 400px;
    transform: rotate(2deg);
    margin-top: 40px;
    box-shadow: -6px 6px 0 rgba(0, 0, 0, 0.15);
}

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

.problem-amplification {
    padding: 80px 60px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

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

.problem-content-irregular h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 45px 35px;
    color: #ffffff;
    border-radius: 8px;
}

.problem-card-offset {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 45px 35px;
    color: #ffffff;
    border-radius: 8px;
    transform: translateY(30px);
}

.problem-card h3,
.problem-card-offset h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.problem-card p,
.problem-card-offset p {
    font-size: 16px;
    line-height: 1.6;
}

.insight-asymmetric {
    display: flex;
    flex-wrap: wrap;
    margin: 90px 60px;
    gap: 0;
}

.insight-image-left {
    flex: 1;
    min-width: 400px;
    min-height: 500px;
    margin-right: -60px;
    z-index: 1;
}

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

.insight-text-right {
    flex: 1.2;
    min-width: 450px;
    padding: 70px 60px;
    background-color: #ecf0f1;
    z-index: 2;
    margin-top: 50px;
}

.insight-text-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-text-right p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-showcase {
    padding: 90px 40px;
    background-color: #f8f9fa;
}

.services-showcase h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card-large {
    flex: 1 1 calc(60% - 30px);
    min-width: 400px;
    padding: 45px 40px;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.service-card-medium {
    flex: 1 1 calc(50% - 30px);
    min-width: 350px;
    padding: 40px 35px;
    color: #ffffff;
    border-radius: 12px;
}

.service-card-small {
    flex: 1 1 calc(35% - 30px);
    min-width: 300px;
    padding: 35px 30px;
    color: #ffffff;
    border-radius: 12px;
}

.service-card-offset {
    flex: 1 1 calc(45% - 30px);
    min-width: 350px;
    padding: 40px 35px;
    color: #ffffff;
    border-radius: 12px;
    transform: translateY(40px);
}

.service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-large h3,
.service-card-medium h3,
.service-card-small h3,
.service-card-offset h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card-large p,
.service-card-medium p,
.service-card-small p,
.service-card-offset p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
}

.service-select {
    padding: 14px 28px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-select:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.testimonials-irregular {
    padding: 90px 60px;
    background-color: #ffffff;
}

.testimonials-irregular h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.testimonial-offset {
    flex: 1;
    min-width: 320px;
    padding: 40px 35px;
    border-radius: 8px;
    transform: rotate(-1.5deg);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-main {
    flex: 1.5;
    min-width: 380px;
    padding: 50px 45px;
    border-radius: 8px;
    transform: translateY(30px);
}

.testimonial-small {
    flex: 1;
    min-width: 300px;
    padding: 35px 30px;
    border-radius: 8px;
    transform: rotate(1deg);
    margin-top: 50px;
}

.testimonial-offset p,
.testimonial-main p,
.testimonial-small p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
}

.form-section-offset {
    padding: 100px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    margin: 80px 40px 80px 100px;
    transform: skewY(-2deg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    transform: skewY(2deg);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #555;
}

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

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

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

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

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

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

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

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.trust-builders {
    padding: 80px 100px 80px 60px;
    background-color: #f8f9fa;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 30px;
    margin: 0 -60px 30px -60px;
    border-left: 4px solid #f39c12;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #34495e;
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #c0392b;
}

.cookie-buttons a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-buttons a:hover {
    text-decoration: underline;
}

.about-hero-offset {
    padding: 100px 60px 80px 120px;
    margin-top: 35px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 900px;
}

.about-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
    line-height: 1.7;
}

.story-section {
    padding: 80px 40px;
}

.story-content-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.story-block {
    flex: 1.2;
    min-width: 400px;
    padding: 50px 45px;
    transform: translateY(40px);
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-image-overlap {
    flex: 1;
    min-width: 350px;
    min-height: 450px;
    margin-left: -60px;
    box-shadow: -10px 10px 0 rgba(0, 0, 0, 0.1);
}

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

.mission-asymmetric {
    padding: 90px 100px 90px 60px;
    background: linear-gradient(to right, #ffffff 0%, #f8f9fa 100%);
}

.mission-content {
    max-width: 850px;
}

.mission-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-grid-offset {
    padding: 80px 60px;
}

.values-grid-offset h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card-large {
    flex: 1 1 calc(55% - 30px);
    min-width: 380px;
    padding: 45px 40px;
    color: #ffffff;
    border-radius: 8px;
}

.value-card-medium {
    flex: 1 1 calc(40% - 30px);
    min-width: 320px;
    padding: 40px 35px;
    color: #ffffff;
    border-radius: 8px;
    transform: translateY(30px);
}

.value-card-small {
    flex: 1 1 calc(35% - 30px);
    min-width: 300px;
    padding: 35px 30px;
    color: #ffffff;
    border-radius: 8px;
}

.value-card-offset {
    flex: 1 1 calc(60% - 30px);
    min-width: 400px;
    padding: 45px 40px;
    color: #ffffff;
    border-radius: 8px;
    transform: rotate(-1deg);
}

.value-card-large h3,
.value-card-medium h3,
.value-card-small h3,
.value-card-offset h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.value-card-large p,
.value-card-medium p,
.value-card-small p,
.value-card-offset p {
    font-size: 16px;
    line-height: 1.6;
}

.team-section-irregular {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.team-section-irregular h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.team-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.team-content p {
    flex: 1;
    min-width: 400px;
    font-size: 17px;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    min-width: 380px;
    min-height: 400px;
    transform: rotate(2deg);
}

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

.approach-section {
    padding: 80px 60px 80px 120px;
    background-color: #ffffff;
}

.approach-content-offset {
    max-width: 900px;
}

.approach-content-offset h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-content-offset p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.commitment-block {
    padding: 90px 80px;
    margin: 80px 60px 80px 40px;
    color: #ffffff;
}

.commitment-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.commitment-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 1000px;
}

.services-hero {
    padding: 100px 60px;
    margin-top: 35px;
    text-align: center;
    color: #ffffff;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

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

.services-detailed {
    padding: 60px 40px 100px 40px;
}

.service-detail-offset,
.service-detail-reverse {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    gap: 0;
}

.service-detail-offset {
    margin-left: 60px;
}

.service-detail-reverse {
    margin-right: 60px;
}

.service-detail-content {
    flex: 1.2;
    min-width: 450px;
    padding: 60px 50px;
    color: #ffffff;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 25px;
    margin-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0 25px 0;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    min-height: 500px;
}

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

.service-detail-offset .service-detail-image {
    margin-left: -60px;
    margin-top: 50px;
}

.service-detail-reverse .service-detail-image {
    margin-right: -60px;
    margin-top: 50px;
}

.service-form-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-hero {
    padding: 100px 60px;
    margin-top: 35px;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-main-layout {
    padding: 80px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-offset {
    flex: 1;
    min-width: 400px;
    padding: 50px 45px;
    transform: translateY(-40px);
}

.contact-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

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

.email-note,
.hours-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

.contact-additional {
    flex: 1.2;
    min-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 40px 35px;
    color: #ffffff;
    border-radius: 8px;
}

.contact-card-offset {
    padding: 40px 35px;
    color: #ffffff;
    border-radius: 8px;
    transform: translateX(40px);
}

.contact-card h3,
.contact-card-offset h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card p,
.contact-card-offset p {
    font-size: 16px;
    line-height: 1.6;
}

.location-info {
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.location-content {
    flex: 1;
    min-width: 400px;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.location-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.location-image {
    flex: 1;
    min-width: 400px;
    min-height: 400px;
}

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

.contact-faq {
    padding: 80px 60px;
}

.contact-faq h2 {
    font-size: 40px;
    margin-bottom: 45px;
    text-align: center;
    color: #2c3e50;
}

.faq-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 320px;
    padding: 35px 30px;
    border-radius: 8px;
}

.faq-item-offset {
    flex: 1;
    min-width: 320px;
    padding: 35px 30px;
    border-radius: 8px;
    transform: translateY(30px);
}

.faq-item h3,
.faq-item-offset h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p,
.faq-item-offset p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.contact-privacy-note {
    padding: 80px 100px 80px 60px;
}

.privacy-content {
    max-width: 900px;
    padding: 50px 45px;
    color: #ffffff;
    border-radius: 8px;
}

.privacy-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 60px;
    margin-top: 35px;
    text-align: center;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
}

.thanks-details {
    padding: 80px 60px;
}

.thanks-info-block {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 50px 45px;
    border-radius: 8px;
}

.thanks-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.step-item {
    flex: 1;
    min-width: 280px;
}

.step-item h3 {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 12px;
}

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

.thanks-service-reference {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.thanks-service-reference h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-service-reference .service-name {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 15px;
}

.thanks-service-reference p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-additional-info {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.info-card {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 45px 40px;
    color: #ffffff;
    border-radius: 8px;
}

.info-card-offset {
    max-width: 900px;
    margin: 0 auto 40px 100px;
    padding: 45px 40px;
    color: #ffffff;
    border-radius: 8px;
}

.info-card h3,
.info-card-offset h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.info-card p,
.info-card-offset p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-card ul,
.info-card-offset ul {
    margin-left: 20px;
}

.info-card ul li,
.info-card-offset ul li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-explore {
    padding: 80px 60px;
}

.thanks-explore h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.explore-card {
    flex: 1;
    min-width: 350px;
    padding: 50px 40px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.explore-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.explore-card p {
    font-size: 16px;
    line-height: 1.6;
}

.legal-hero {
    padding: 100px 60px 60px 60px;
    margin-top: 35px;
    color: #ffffff;
}

.legal-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.legal-hero p {
    font-size: 18px;
}

.legal-content {
    padding: 60px 40px 100px 40px;
}

.legal-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 60px;
    background-color: #ffffff;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.legal-text ul {
    margin-bottom: 25px;
    margin-left: 30px;
}

.legal-text ul li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

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

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

@media (max-width: 1024px) {
    .nav-floating {
        position: relative;
        top: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        flex-direction: row;
    }

    .nav-brand {
        border-bottom: none;
        border-right: 2px solid #3498db;
        padding-right: 20px;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 0;
    }

    .intro-offset {
        margin: 60px 20px;
    }

    .intro-block {
        transform: rotate(0);
    }

    .intro-visual {
        transform: rotate(0);
    }

    .testimonial-offset,
    .testimonial-main,
    .testimonial-small {
        transform: none;
        margin-top: 0;
    }

    .form-section-offset {
        margin: 40px 20px;
        transform: skewY(0);
    }

    .form-container {
        transform: skewY(0);
        padding: 40px 30px;
    }

    .nav-links {
        flex-direction: column;
    }
}
