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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #E07A5F;
    --accent-color: #F4A261;
    --dark-text: #1A2332;
    --light-text: #4A5568;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-white);
}

.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: var(--light-text);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1e4456;
    transform: translateY(-2px);
}

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

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.intro-left {
    flex: 1;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.intro-right p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    background-color: var(--bg-light);
}

.benefit-content {
    flex: 1;
    padding: 4rem 3rem;
}

.benefit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.benefit-visual {
    flex: 1;
    overflow: hidden;
}

.benefit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-overview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-overview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-text);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px 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 8px 20px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark-text);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.process-content {
    flex: 1.3;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.step p {
    color: var(--light-text);
    line-height: 1.7;
}

.process-visual {
    flex: 0.7;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.testimonial-grid {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text);
}

.location-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
}

.location-visual {
    flex: 1;
}

.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
}

.location-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.location-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-list {
    list-style: none;
    margin-bottom: 2rem;
}

.location-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-text);
    line-height: 1.6;
}

.location-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.form-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    margin: 6rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.form-container > p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.trust-split {
    display: flex;
    gap: 4rem;
}

.trust-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-left p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.trust-right {
    flex: 0.8;
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer {
    background-color: #1A2332;
    color: #FFFFFF;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: #B8C1D9;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #B8C1D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #B8C1D9;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c96651;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A2332;
    color: #FFFFFF;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    display: none;
}

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

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

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

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

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

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background-color: #1e4456;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4456 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.about-intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.about-intro-left p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro-right {
    flex: 1;
}

.about-intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-text);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
}

.team-visual {
    flex: 1;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
}

.team-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

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

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.approach-split {
    display: flex;
    gap: 4rem;
}

.approach-left {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-left p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-right {
    flex: 0.7;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.experience-numbers {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    margin: 6rem 0;
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.number-item {
    text-align: center;
    color: var(--bg-white);
}

.number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.number-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.philosophy-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

.philosophy-visual {
    flex: 1;
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-about {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.services-detail {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

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

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.service-detail-right p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
}

.services-cta {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-info {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.location-split {
    display: flex;
    gap: 4rem;
}

.location-text {
    flex: 1.5;
}

.location-text p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-directions {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.location-directions h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.location-directions ul li {
    padding: 0.5rem 0;
    color: var(--light-text);
}

.visit-info {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.visit-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.visit-content p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.response-info-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.response-visual {
    flex: 1;
}

.response-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.response-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.response-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.response-text p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48C774;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-info p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-text);
}

.next-steps {
    display: flex;
    gap: 2rem;
}

.next-step {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step p {
    color: var(--light-text);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.thanks-additional {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-additional h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.thanks-additional p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

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

.thanks-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.thanks-links a:hover {
    color: #1e4456;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

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

.legal-content ul li {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 992px) {
    .hero-split,
    .intro-section,
    .benefits-split,
    .process-split,
    .location-split,
    .trust-split,
    .about-intro-split,
    .team-split,
    .approach-split,
    .philosophy-split,
    .service-detail-item,
    .contact-split,
    .response-info-split {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

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

    .values-grid,
    .testimonial-grid,
    .next-steps {
        flex-direction: column;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .number {
        font-size: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .header-content {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .legal-content {
        padding: 2rem;
    }
}