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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeaa7;
    position: relative;
    z-index: 100;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 35px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    width: 45%;
    position: relative;
    z-index: 10;
    padding-right: 60px;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #e9ecef;
}

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

.story-block {
    padding: 120px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: var(--bg-white);
}

.story-offset-left {
    width: 55%;
    padding-left: 8%;
}

.story-offset-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-offset-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image-right {
    width: 40%;
    position: relative;
}

.story-image-right img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    background-color: #f8f9fa;
}

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

.problem-container h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transform: rotate(-1deg);
    background-color: #fff;
}

.problem-card:nth-child(2) {
    transform: rotate(1deg) translateY(20px);
}

.problem-card:nth-child(3) {
    transform: rotate(-0.5deg) translateY(-10px);
}

.problem-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.insight-overlap {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    background-color: var(--bg-light);
}

.insight-text {
    width: 48%;
    padding-right: 40px;
}

.insight-text h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.insight-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.insight-list {
    list-style: none;
    margin-top: 30px;
}

.insight-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.insight-image {
    width: 48%;
    position: relative;
    transform: translateX(20px);
}

.insight-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    background-color: #e9ecef;
}

.trust-section {
    padding: 100px 10%;
    background-color: var(--bg-white);
}

.trust-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-asymmetric {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.testimonial-card {
    background-color: #fffbf0;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    max-width: 380px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-card.offset-top {
    transform: translateY(-30px);
}

.testimonial-card.offset-bottom {
    transform: translateY(30px);
}

.testimonial-card.offset-mid {
    transform: translateY(0);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.services-reveal {
    padding: 120px 5%;
    background: linear-gradient(to bottom right, #ffffff 0%, #f0f2f5 100%);
}

.services-reveal h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card.large {
    width: 100%;
    max-width: 600px;
    transform: rotate(-0.5deg);
}

.service-card.medium {
    width: calc(50% - 20px);
    max-width: 480px;
    transform: rotate(0.5deg);
}

.service-card.small {
    width: calc(50% - 20px);
    max-width: 480px;
    transform: rotate(-0.3deg);
}

.service-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.form-container-offset {
    max-width: 650px;
    margin-left: 10%;
    background-color: white;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-0.5deg);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-container-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
}

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

.references-section {
    padding: 60px 10%;
    background-color: #f9f9f9;
    border-top: 1px solid var(--border-color);
}

.references-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.references-list {
    list-style: none;
    counter-reset: ref-counter;
}

.references-list li {
    counter-increment: ref-counter;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.references-list li a {
    color: #0066cc;
}

.references-list li a:hover {
    text-decoration: underline;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px 5%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: var(--accent-color);
    color: white;
}

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

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

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

.disclaimer {
    padding: 40px 10%;
    background-color: #fff9e6;
    border-top: 2px solid #ffecb3;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.about-hero {
    padding: 150px 10% 80px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.philosophy-offset {
    padding: 100px 5%;
    display: flex;
    gap: 70px;
    align-items: center;
    background-color: var(--bg-white);
}

.philosophy-text {
    width: 52%;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-image {
    width: 43%;
    transform: rotate(1deg);
}

.philosophy-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    background-color: #e9ecef;
}

.values-section {
    padding: 100px 10%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
}

.values-asymmetric {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.value-card:nth-child(1) {
    transform: translateY(-20px) rotate(-0.5deg);
}

.value-card:nth-child(2) {
    transform: translateY(20px) rotate(0.5deg);
}

.value-card:nth-child(3) {
    transform: translateY(0) rotate(-0.3deg);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-section {
    padding: 100px 10%;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
}

.process-flow {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 100px 5%;
    display: flex;
    gap: 70px;
    align-items: center;
    background-color: var(--bg-light);
}

.team-content {
    width: 50%;
}

.team-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.team-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-image {
    width: 45%;
}

.team-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    background-color: #e9ecef;
}

.cta-about {
    padding: 100px 10%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.services-hero {
    padding: 150px 10% 80px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detailed {
    padding: 60px 5%;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 40%;
    background-color: #f0f2f5;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    width: 55%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.service-features li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.service-pricing .price {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-process {
    padding: 100px 10%;
    background-color: var(--bg-light);
}

.service-process h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
}

.process-timeline {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) {
    transform: translateY(-15px);
}

.timeline-item:nth-child(even) {
    transform: translateY(15px);
}

.timeline-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-services {
    padding: 100px 10%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    text-align: center;
    color: white;
}

.cta-services h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.contact-hero {
    padding: 150px 10% 80px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-main {
    padding: 80px 10%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background-color: var(--bg-white);
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background-color: #fff9e6;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: 40px;
}

.contact-note p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-image-section {
    flex: 1;
    max-width: 500px;
}

.contact-image-section img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    background-color: #e9ecef;
}

.contact-cta {
    padding: 100px 10%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    min-height: 80vh;
    padding: 150px 10% 80px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.thanks-service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4caf50;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.next-steps-list li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.thanks-image {
    flex: 1;
    max-width: 500px;
}

.thanks-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    background-color: #e9ecef;
}

.legal-page {
    padding: 150px 10% 80px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: #0066cc;
}

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

@media (max-width: 1024px) {
    .nav-floating {
        right: 2%;
        padding: 15px 25px;
        gap: 30px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 150px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 15px;
        margin-top: 50px;
    }

    .story-block,
    .insight-overlap,
    .philosophy-offset,
    .team-section,
    .contact-main,
    .thanks-hero {
        flex-direction: column;
        gap: 50px;
    }

    .story-offset-left,
    .story-image-right,
    .insight-text,
    .insight-image,
    .philosophy-text,
    .philosophy-image,
    .team-content,
    .team-image,
    .contact-info-block,
    .contact-image-section,
    .thanks-content,
    .thanks-image {
        width: 100%;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        padding: 30px;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        top: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .services-staggered .service-card.large,
    .services-staggered .service-card.medium,
    .services-staggered .service-card.small {
        width: 100%;
        transform: rotate(0);
    }

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

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