:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --primary-light: #4a8a4c;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 6px 20px rgba(0,0,0,0.12);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: none;
    gap: 35px;
}

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

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

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

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

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,95,45,0.85), rgba(26,58,27,0.7));
}

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

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

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

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

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

.intro-block {
    padding: 80px 20px;
    background: var(--bg-white);
    text-align: center;
}

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

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

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

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

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-card {
    background: var(--bg-white);
    padding: 45px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

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

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.image-text-section {
    padding: 70px 20px;
    background: var(--bg-white);
}

.image-text-section.dark-bg {
    background: var(--bg-dark);
    color: var(--text-light);
}

.image-text-section.dark-bg h2 {
    color: var(--text-light);
}

.image-text-section.dark-bg p {
    color: rgba(255,255,255,0.85);
}

.image-text-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.image-side img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.text-side h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

.stats-section {
    padding: 70px 20px;
    background: var(--primary-color);
    color: var(--text-light);
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

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

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

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

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

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

.service-preview-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-preview-card h3 {
    padding: 25px 25px 10px;
    font-size: 24px;
    color: var(--primary-dark);
}

.service-preview-card p {
    padding: 0 25px 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.price-tag {
    display: block;
    padding: 15px 25px 25px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.testimonial-block {
    margin-bottom: 40px;
    padding: 35px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
}

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

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

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

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: var(--text-gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

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

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.final-cta-section {
    padding: 90px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.final-cta-section .cta-primary:hover {
    background: var(--bg-light);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(44,95,45,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(44,95,45,0.5);
}

.page-header {
    padding: 70px 20px 50px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

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

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 70px;
}

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

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

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

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

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

.pricing-info-section {
    padding: 70px 20px;
    background: var(--bg-light);
}

.pricing-info-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.pricing-info-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.info-list {
    margin: 20px 0;
    padding-left: 25px;
}

.info-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-gray);
    position: relative;
    padding-left: 10px;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--primary-color);
    font-size: 20px;
}

.cta-services-section {
    padding: 70px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-services-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.cta-services-section .cta-primary:hover {
    background: var(--bg-light);
}

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

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

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

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-year {
    position: absolute;
    left: -65px;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.values-detail-section {
    padding: 70px 20px;
    background: var(--bg-white);
}

.values-detail-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.value-detail-block {
    margin-bottom: 35px;
}

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

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

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

.team-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.team-member {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

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

.member-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

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

.cert-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cert-item {
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.cert-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

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

.about-cta-section {
    padding: 70px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.about-cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.about-cta-section .cta-primary:hover {
    background: var(--bg-light);
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

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

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

.contact-detail a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

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

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    background: var(--bg-white);
    padding: 60px 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.map-note {
    font-size: 15px;
    color: var(--text-gray);
}

.contact-form-alt-section {
    padding: 70px 20px;
    background: var(--bg-white);
    text-align: center;
}

.contact-form-alt-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.contact-form-alt-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-gray);
}

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

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

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

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

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

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

.service-confirm {
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-detail {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.thanks-detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

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

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

.next-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

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

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

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

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

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

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

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-gray);
    position: relative;
    padding-left: 15px;
}

.legal-page ul li::before {
    content: '•';
    position: absolute;
    left: -10px;
    color: var(--primary-color);
    font-size: 18px;
}

.legal-page ol {
    margin: 15px 0 20px 25px;
}

.legal-page ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-gray);
    padding-left: 5px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-dark);
}

.cookie-table td {
    color: var(--text-gray);
}

.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
}

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

    .hamburger {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 24px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 280px;
    }

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

    .image-text-section.right-align .image-text-container {
        flex-direction: row-reverse;
    }

    .image-side {
        flex: 1;
    }

    .text-side {
        flex: 1;
    }

    .stats-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-preview-card {
        flex: 1;
        min-width: 300px;
    }

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

    .form-row .form-group {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 250px;
    }

    .cert-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cert-item {
        flex: 1;
        min-width: 280px;
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1;
        min-width: 250px;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .cookie-content p {
        text-align: left;
    }
}