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

:root {
    --primary-color: #2a5934;
    --secondary-color: #4a7c59;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-split {
    padding: 80px 32px;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    background-color: #e5e5e5;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.value-proposition {
    padding: 96px 32px;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #e5e5e5;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-section {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

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

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-details p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.select-service {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.process-section {
    padding: 96px 32px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.step-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    min-width: 60px;
}

.step-info h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-info p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

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

.form-intro p {
    font-size: 17px;
    color: var(--text-medium);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 64px 32px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 64px;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 24px;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #b0b0b0;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    padding: 24px 32px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-btn.reject:hover {
    background-color: var(--bg-light);
}

.cookie-actions a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

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

.header-content h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.header-content p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.detailed-services {
    padding: 48px 32px;
}

.service-detail-block {
    padding: 64px 0;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.detail-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.detail-content {
    flex: 1;
}

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

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

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

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

.pricing-info {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.cta-section {
    padding: 80px 32px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.about-hero {
    padding: 80px 32px;
    background-color: var(--bg-light);
}

.approach-section {
    padding: 96px 32px;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto 64px;
    text-align: center;
}

.approach-content h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    justify-content: center;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
}

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

.expertise-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-item h4 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.expertise-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.values-section {
    padding: 96px 32px;
}

.values-content h2 {
    font-size: 38px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 64px;
    font-weight: 700;
}

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

.value-block {
    flex: 1 1 calc(50% - 24px);
    min-width: 300px;
}

.value-block h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.process-philosophy {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

.team-commitment {
    padding: 96px 32px;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.commitment-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.contact-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    padding: 64px 32px;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

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

.info-section {
    margin-bottom: 32px;
}

.info-section h3 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

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

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

.map-placeholder {
    position: relative;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.map-overlay p {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.working-method {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

.method-content {
    max-width: 1200px;
    margin: 0 auto;
}

.method-content h2 {
    font-size: 38px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 64px;
    font-weight: 700;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-icon {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 80px;
    line-height: 1;
}

.step-details h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-details p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.areas-coverage {
    padding: 96px 32px;
}

.coverage-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coverage-content h2 {
    font-size: 38px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
}

.coverage-content > p {
    font-size: 17px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 48px;
}

.coverage-grid {
    display: flex;
    gap: 32px;
}

.coverage-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.coverage-item h4 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.coverage-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.faq-section {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    min-width: 300px;
}

.faq-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 96px 32px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

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

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.next-steps {
    margin: 64px 0;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.step-text h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-text p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 15px;
    color: #856404;
    margin: 0;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s;
}

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

.additional-info {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

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

.info-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-content {
    padding: 64px 32px;
}

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

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

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 24px 0 12px;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin: 16px 0 8px;
    font-weight: 600;
}

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

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section ul li {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 12px;
    font-size: 14px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

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

    .hamburger {
        display: flex;
    }

    .hero-content,
    .split-layout,
    .service-detail-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .stats-grid,
    .coverage-grid,
    .info-grid {
        flex-direction: column;
    }

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

    .value-block,
    .faq-item {
        flex: 1 1 100%;
    }

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

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

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

    .thanks-actions,
    .pricing-info {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-actions a,
    .pricing-info button {
        width: 100%;
        text-align: center;
    }
}