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

:root {
    --primary-color: #00a8cc;
    --primary-dark: #007a94;
    --secondary-color: #005f73;
    --accent-color: #0a9396;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #e8f4f8;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.container-split > * {
    flex: 1 1 400px;
}

.main-nav {
    background: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    overflow: hidden;
    padding: 100px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="50" cy="50" r="40" fill="white" opacity="0.05"/%3E%3C/svg%3E');
    background-size: 100px 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 18px;
}

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

.cta-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-large {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 50px;
    font-size: 20px;
}

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

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

.trust-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-intro p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.trust-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 40px 30px;
    background: var(--bg-lighter);
    border-radius: 8px;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.story-section {
    padding: 120px 20px;
    background: var(--bg-light);
}

.story-image {
    flex: 1 1 450px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.story-text {
    flex: 1 1 450px;
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

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

.services-preview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-block {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.service-block:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.service-content {
    flex: 1 1 400px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 12px;
}

.service-cta {
    flex: 0 0 auto;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.service-cta:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-lighter);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

.guarantee-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.guarantee-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.guarantee-item {
    flex: 1 1 400px;
}

.guarantee-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-header p {
    font-size: 18px;
    color: var(--text-light);
}

.appointment-form,
.contact-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-consent label {
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
}

.form-consent a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit,
.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

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

.final-cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--bg-white);
}

.final-cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

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

.sticky-cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    font-size: 16px;
}

.sticky-cta-button:hover {
    background: var(--primary-dark);
    transform: scale(1.08);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    padding: 100px 20px 60px;
    background: var(--bg-lighter);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

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

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 400px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.team-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 450px;
    text-align: center;
}

.member-photo {
    margin-bottom: 24px;
}

.member-photo img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.member-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

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

.technology-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.technology-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.tech-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-text {
    flex: 1 1 450px;
}

.tech-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.tech-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.tech-list {
    list-style: none;
    padding-left: 0;
}

.tech-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
}

.tech-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.tech-image {
    flex: 1 1 450px;
}

.tech-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cta-about {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 36px;
}

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

.service-detail-block {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-lighter);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-benefits {
    margin: 30px 0;
    padding: 30px;
    background: var(--bg-lighter);
    border-radius: 8px;
}

.service-benefits h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-benefits ul {
    list-style: none;
    padding-left: 0;
}

.service-benefits li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 18px;
    color: var(--text-light);
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-service {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 18px;
}

.cta-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-detail-image {
    flex: 1 1 450px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.pricing-note h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-note p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.services-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.services-cta h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-cta p {
    font-size: 20px;
    margin-bottom: 36px;
}

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

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

.contact-info {
    flex: 1 1 450px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-note {
    padding: 24px;
    background: var(--bg-lighter);
    border-radius: 8px;
    margin-top: 20px;
}

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

.contact-map {
    flex: 1 1 450px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-lighter);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.directions-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.direction-item {
    flex: 1 1 300px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.contact-form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.thanks-section {
    padding: 120px 20px;
    background: var(--bg-white);
}

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

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-confirmation {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 18px;
    color: var(--text-dark);
    padding: 16px 24px;
    background: var(--bg-lighter);
    border-radius: 8px;
    display: inline-block;
}

.thanks-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-info h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.thanks-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
}

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

.thanks-contact {
    padding: 30px;
    background: var(--bg-lighter);
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-contact p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-page ul {
    margin-bottom: 24px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-dark);
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    font-size: 17px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table th,
.gdpr-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table th {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 17px;
}

.gdpr-table td {
    font-size: 16px;
    color: var(--text-light);
}

.gdpr-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 20px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .section-header h2,
    .trust-intro h2,
    .testimonials-section h2,
    .guarantee-content h2 {
        font-size: 32px;
    }

    .story-text h2,
    .form-header h2,
    .final-cta-content h2 {
        font-size: 30px;
    }

    .service-block {
        padding: 30px 24px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-price {
        font-size: 24px;
    }

    .appointment-form,
    .contact-form {
        padding: 30px 24px;
    }

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

    .sticky-cta-button {
        padding: 14px 24px;
        font-size: 15px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .service-detail-block {
        margin-bottom: 60px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .price-value {
        font-size: 28px;
    }

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

    .thanks-info {
        padding: 30px 24px;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-page h2 {
        font-size: 26px;
    }

    .gdpr-table {
        font-size: 14px;
    }

    .gdpr-table th,
    .gdpr-table td {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .service-block {
        padding: 24px 20px;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
