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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    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;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #2980b9;
}

.btn-secondary-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.intro-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

.intro-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.services-split {
    background-color: var(--bg-white);
}

.service-item {
    display: flex;
    min-height: 500px;
}

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

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

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--bg-light);
}

.service-item:nth-child(even) .service-info {
    background-color: var(--bg-white);
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 0;
}

.values-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

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

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.testimonials-split {
    display: flex;
    background-color: var(--primary-color);
}

.testimonial-item {
    flex: 1;
    padding: 80px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item:first-child {
    background-color: var(--primary-color);
}

.testimonial-item:last-child {
    background-color: #34495e;
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-style: italic;
}

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

.process-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

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

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.cta-section {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--bg-white);
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .btn-large {
    background-color: var(--bg-white);
    color: var(--secondary-color);
}

.cta-section .btn-large:hover {
    background-color: var(--bg-light);
}

.form-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.form-row {
    display: flex;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--bg-light);
    line-height: 1.7;
}

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

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-light);
}

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

.sticky-cta a {
    display: block;
    padding: 16px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

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

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

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

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

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

.page-header {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-header .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-split {
    display: flex;
    min-height: 550px;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

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

.philosophy-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

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

.expertise-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-light);
}

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

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

.expertise-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

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

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail {
    padding: 70px 0;
    background-color: var(--bg-white);
}

.service-detail.reverse {
    background-color: var(--bg-light);
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.service-pricing {
    font-size: 1.2rem;
    margin: 25px 0;
}

.service-pricing strong {
    color: var(--primary-color);
}

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

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

.additional-services {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.additional-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.additional-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.additional-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.additional-price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.service-cta {
    padding: 90px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-note {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-approach {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.contact-approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

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

.step-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.faq-section {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-cta {
    padding: 90px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    color: var(--success-color);
}

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

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

.thanks-details {
    margin-bottom: 40px;
}

.service-confirmation {
    font-size: 1.1rem;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.service-confirmation strong {
    color: var(--primary-color);
}

.thanks-next {
    margin: 50px 0;
    text-align: left;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.next-step .step-number {
    flex-shrink: 0;
}

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

.thanks-contact {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

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

.thanks-contact p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.email-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.thanks-info {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.thanks-info h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.info-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.legal-content {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

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

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

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

.cookie-controls {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 50px 30px;
    }

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

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

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

    .service-info {
        padding: 40px 30px;
    }

    .testimonials-split {
        flex-direction: column;
    }

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

    .about-split,
    .expertise-split {
        flex-direction: column;
    }

    .about-content,
    .expertise-content {
        padding: 50px 30px;
    }

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

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

    .service-detail-content {
        padding: 40px 30px;
    }

    .contact-split {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
    }
}