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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c59;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --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);
}

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

.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-light);
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-left p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background-color: #e8ebe9;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    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 ease;
    box-shadow: var(--shadow-sm);
}

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

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

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

.intro-section {
    padding: 100px 40px;
    text-align: center;
    background-color: var(--bg-white);
}

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.intro-section p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

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

.content-half {
    flex: 1;
    padding: 40px;
}

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

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

.services-grid-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

.service-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.6;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

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

.image-half {
    flex: 1;
    background-color: #e8ebe9;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8ebe9 100%);
}

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

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 50px;
}

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

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

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

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

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

.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: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.values-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

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

.value-item {
    flex: 1;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

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

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    color: var(--bg-white);
    font-size: 15px;
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8ebe9 100%);
    text-align: center;
}

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

.hero-content-center p {
    font-size: 19px;
    color: var(--text-medium);
}

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

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

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

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

.step-item {
    flex: 1;
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

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

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

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

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

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

.values-split {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-block {
    flex: 1;
    background: var(--bg-white);
    padding: 44px 36px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

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

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

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

.services-main {
    padding: 60px 40px 100px;
    background: var(--bg-white);
}

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

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

.service-content {
    flex: 1;
}

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

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

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    padding: 10px 0 10px 32px;
    font-size: 16px;
    color: var(--text-medium);
    position: relative;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-image {
    flex: 1;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8ebe9;
}

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

.pricing-note h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.contact-main {
    padding: 60px 40px 80px;
    background: var(--bg-white);
}

.contact-info {
    flex: 1;
    padding: 40px;
}

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

.info-block {
    margin-bottom: 36px;
}

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

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

.no-link {
    color: var(--text-medium);
    text-decoration: none;
    pointer-events: none;
}

.contact-map {
    flex: 1;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: #e8ebe9;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.85);
    padding: 28px;
    color: var(--bg-white);
}

.map-overlay p {
    margin: 0 0 8px 0;
    font-size: 15px;
}

.accessibility-info {
    padding: 80px 40px;
    background: var(--bg-light);
}

.accessibility-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.accessibility-info p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.contact-methods h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.method-card {
    flex: 1;
    padding: 36px 28px;
    background: var(--bg-light);
    border-radius: 8px;
}

.method-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.privacy-notice {
    padding: 60px 40px;
    background: var(--bg-light);
}

.privacy-notice h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.privacy-notice p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

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

.privacy-notice a:hover {
    text-decoration: underline;
}

.thanks-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8ebe9 100%);
    text-align: center;
}

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

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

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

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

.service-confirmation {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.steps-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-card {
    display: flex;
    gap: 24px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    align-items: flex-start;
}

.step-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.4;
    min-width: 50px;
}

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

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

.preparation-tips {
    padding: 80px 40px;
    background: var(--bg-light);
}

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

.prep-list li {
    padding: 10px 0 10px 32px;
    font-size: 16px;
    color: var(--text-medium);
    position: relative;
}

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

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

.meanwhile-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.meanwhile-section > p {
    font-size: 17px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 40px;
}

.meanwhile-links {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.info-link {
    flex: 1;
    padding: 36px 32px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.info-link h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-reminder {
    padding: 60px 40px;
    background: var(--bg-light);
}

.reminder-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 36px;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.reminder-box h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-page {
    padding: 60px 40px 100px;
    background: var(--bg-white);
}

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

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.legal-page ul,
.legal-page ol {
    margin: 18px 0 24px 32px;
}

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

.legal-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-light);
}

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

.cookies-table th,
.cookies-table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookies-table th {
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-image {
        height: 350px;
    }

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

    .values-grid,
    .values-split,
    .methods-grid,
    .meanwhile-links {
        flex-direction: column;
    }

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

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .main-nav.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-left h1,
    .hero-content-center h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 17px;
    }

    .intro-section h2,
    .content-half h2,
    .cta-container h2 {
        font-size: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .contact-map {
        height: 350px;
    }
}

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

    .hero-left,
    .content-half {
        padding: 40px 20px;
    }

    .intro-section,
    .services-preview,
    .trust-section,
    .form-section,
    .values-section {
        padding: 60px 20px;
    }

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

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