* {
    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: #2ecc71;
}

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);
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.ad-disclosure {
    background-color: #f39c12;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

.nav-floating {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

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

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

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

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

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

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

.container-split {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.intro-block p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
}

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

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

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.card-cta:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.trust-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.approach-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 280px;
}

.approach-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.approach-item p {
    font-size: 15px;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.contact-form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--secondary-color);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    flex: 1 1 280px;
    max-width: 350px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
}

.disclaimer {
    font-size: 13px;
    color: #856404;
    text-align: center;
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.sticky-cta a {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 110;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

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

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

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    flex: 1 1 280px;
    max-width: 500px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
}

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

.expertise-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.expertise-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.expertise-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.expertise-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.expertise-item h3 {
    font-size: 22px;
    padding: 20px 25px 10px;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 15px;
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.approach-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-detailed {
    padding: 40px 20px 80px;
}

.service-detail-card {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-pricing {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-pricing .price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.service-pricing .price-info {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.service-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-cta:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-note {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.pricing-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.pricing-note p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
}

.contact-info-section {
    padding: 60px 20px 80px;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-details-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.map-overlay p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

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

.visit-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.visit-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
}

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

.directions-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.direction-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 280px;
    max-width: 350px;
}

.direction-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.direction-card p {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.7;
}

.working-hours-detail {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.working-hours-detail h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.working-hours-detail p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
}

.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.selected-service-info {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
}

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

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-item {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 15px;
    color: var(--text-light);
}

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

.while-waiting h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.while-waiting p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.waiting-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.waiting-link {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.waiting-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

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

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

.thanks-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-visual {
        flex-direction: row;
        gap: 60px;
        padding: 100px 40px;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }

    .container-split {
        flex-direction: row;
        align-items: center;
    }

    .about-text,
    .trust-content,
    .approach-text {
        flex: 1;
    }

    .about-image,
    .trust-image,
    .approach-image {
        flex: 1;
    }

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

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-content,
    .service-detail-image {
        flex: 1;
    }

    .contact-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-details-card,
    .contact-map-placeholder {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }
}