:root {
    --primary: #1a4d6d;
    --primary-dark: #0f3347;
    --primary-light: #2a6d94;
    --secondary: #d4a853;
    --secondary-dark: #b8923f;
    --text: #2c3e50;
    --text-light: #5a6d7e;
    --text-muted: #8395a7;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-dark: #1a2530;
    --border: #e1e8ed;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--text);
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

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

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-cookie.accept {
    background: var(--secondary);
    color: var(--text);
}

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

.btn-cookie.reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

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

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

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

.nav-list a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26,77,109,0.7) 0%, rgba(15,51,71,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 20px 80px;
    text-align: center;
    color: #fff;
}

.page-hero.compact {
    padding: 120px 20px 60px;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 16px;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.section-header.light {
    color: #fff;
}

.section-header.light h2 {
    color: #fff;
}

.section-header h2 {
    margin-top: 8px;
}

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

.intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 24px;
}

.intro-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.intro-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.services-cta {
    text-align: center;
}

.stats-section {
    padding: 80px 20px;
    background: var(--primary);
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits-image {
    flex: 0 0 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.benefit-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text);
}

.benefits-list strong {
    display: block;
    margin-bottom: 4px;
}

.benefits-list p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info strong {
    display: block;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.process-section {
    padding: 100px 20px;
    background: var(--primary-dark);
}

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

.process-step {
    flex: 1;
    min-width: 220px;
    color: #fff;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1;
}

.process-step h3 {
    color: #fff;
    margin-bottom: 12px;
}

.process-step p {
    opacity: 0.85;
    font-size: 0.95rem;
}

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

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.form-benefit span {
    color: var(--secondary);
    font-weight: 700;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color var(--transition);
    font-family: inherit;
}

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

.checkbox-group {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

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

.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 20px 40px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.6);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--text);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.about-story {
    padding: 100px 20px;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.story-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.value-card h3 {
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.team-section {
    padding: 100px 20px;
}

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

.team-member {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 4px;
}

.member-role {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.certifications-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.certifications-content {
    flex: 1;
}

.certifications-content h2 {
    margin-bottom: 20px;
}

.certifications-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.cert-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 28px;
    position: relative;
}

.cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.certifications-image {
    flex: 0 0 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services-intro {
    padding: 60px 20px;
    background: var(--bg);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-detailed {
    padding: 60px 20px 100px;
}

.service-detail-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 40px;
}

.service-detail-card.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.service-detail-card.highlight h2,
.service-detail-card.highlight h3,
.service-detail-card.highlight h4 {
    color: #fff;
}

.service-detail-card.highlight .service-detail-price {
    color: var(--secondary);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-card.highlight .service-detail-icon {
    background: rgba(255,255,255,0.2);
}

.service-detail-icon svg {
    width: 34px;
    height: 34px;
    color: #fff;
}

.service-detail-title h2 {
    margin-bottom: 8px;
}

.service-detail-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.service-detail-content {
    display: flex;
    gap: 60px;
}

.service-description {
    flex: 1;
}

.service-description p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.service-description h4 {
    margin-bottom: 16px;
}

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

.service-description ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-description ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.service-pricing-details {
    flex: 0 0 320px;
}

.service-pricing-details h4 {
    margin-bottom: 16px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr {
    border-bottom: 1px solid var(--border);
}

.service-detail-card.highlight .pricing-table tr {
    border-color: rgba(255,255,255,0.2);
}

.pricing-table td {
    padding: 14px 0;
}

.pricing-table td:last-child {
    text-align: right;
}

.services-note {
    padding: 0 20px 80px;
}

.note-box {
    background: var(--secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.note-box h3 {
    margin-bottom: 16px;
}

.note-box ul {
    list-style: none;
    padding-left: 0;
    columns: 2;
    column-gap: 40px;
}

.note-box ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.note-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
}

.contact-main {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-card h3 {
    margin-bottom: 12px;
}

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

.contact-note {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.working-hours {
    margin-bottom: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-map-section {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
}

.map-overlay span {
    color: #fff;
    font-weight: 500;
}

.directions-box {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.directions-box h4 {
    margin-bottom: 16px;
}

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

.directions-box ul li {
    padding: 10px 0;
    color: var(--text-light);
}

.contact-extra {
    padding: 0 20px 80px;
}

.extra-info-grid {
    display: flex;
    gap: 30px;
}

.extra-info-card {
    flex: 1;
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.extra-info-card h3 {
    margin-bottom: 16px;
}

.extra-info-card p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.info-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-light);
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: var(--bg-alt);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: #fff;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

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

.service-confirmation {
    background: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.thanks-next-steps {
    text-align: left;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.thanks-next-steps h3 {
    margin-bottom: 16px;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.thanks-next-steps ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-content {
    padding: 60px 20px 100px;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-article h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.legal-article p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--text-light);
}

.legal-article li {
    margin-bottom: 8px;
}

.legal-intro {
    font-size: 1.1rem;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.legal-note {
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    text-align: center;
}

.rodo-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.rodo-table th,
.cookies-table th {
    background: var(--primary);
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.rodo-table td,
.cookies-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.rodo-table tr:hover td,
.cookies-table tr:hover td {
    background: var(--bg-alt);
}

@media (max-width: 992px) {
    .intro-wrapper,
    .benefits-wrapper,
    .story-wrapper,
    .certifications-wrapper,
    .form-wrapper,
    .contact-grid,
    .service-detail-content {
        flex-direction: column;
    }

    .benefits-image,
    .certifications-image,
    .service-pricing-details {
        flex: none;
        width: 100%;
    }

    .extra-info-grid {
        flex-direction: column;
    }

    .note-box ul {
        columns: 1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .hero {
        min-height: 70vh;
        padding: 100px 20px 60px;
    }

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

    .stats-wrapper {
        gap: 40px;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-card {
        padding: 30px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

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

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

    .contact-form {
        padding: 30px 20px;
    }

    .rodo-table,
    .cookies-table {
        font-size: 0.85rem;
    }

    .rodo-table th,
    .cookies-table th,
    .rodo-table td,
    .cookies-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 12px 24px;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .values-grid {
        flex-direction: column;
    }
}
