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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1f4420;
    --secondary-color: #5a8c5b;
    --accent-color: #7fb881;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f7f9f7;
    --bg-dark: #2a3f2b;
    --border-color: #d4d4d4;
    --white: #ffffff;
    --error-color: #c83737;
}

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

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

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

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

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

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

.ad-notice {
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-medium);
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 63, 43, 0.85), rgba(90, 140, 91, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
}

.hero-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 650px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

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

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

.intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

.value-section {
    padding: 70px 0;
}

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

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

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: space-between;
}

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

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-color);
    font-weight: 600;
}

.dark-bg .value-item h4 {
    color: var(--accent-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-header h3 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 25px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    font-size: 15px;
    color: var(--text-medium);
    font-weight: 500;
}

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

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

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-section {
    padding: 70px 0;
}

.testimonial-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    font-style: italic;
}

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

.testimonial-content footer {
    font-size: 16px;
    color: var(--text-medium);
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-notice {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: none;
}

.form-notice p {
    margin: 0;
    color: var(--text-dark);
    font-size: 15px;
}

.form-notice strong {
    color: var(--primary-color);
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}

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

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

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

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

.form-consent {
    margin: 25px 0;
}

.form-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

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

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

.btn-submit {
    width: 100%;
}

.cta-section {
    padding: 70px 0;
}

.cta-content {
    text-align: left;
}

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

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.dark-bg .cta-content h3 {
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.dark-bg .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.disclaimer {
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

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

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

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

.page-hero {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro,
.about-split {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

.about-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.about-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 70px 0;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.team-section {
    padding: 70px 0;
}

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

.team-section p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.7;
}

.approach-section {
    padding: 70px 0;
}

.approach-content h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.step-content h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.certification-section {
    padding: 70px 0;
}

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

.certification-section p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 0;
}

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

.service-detail-block.alt-bg {
    background-color: var(--bg-light);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-number {
    display: inline-block;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.service-includes {
    margin: 30px 0;
}

.service-includes h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.service-includes ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.service-pricing-detail {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alt-bg .service-pricing-detail {
    background-color: var(--white);
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

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

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

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.service-benefits {
    padding: 70px 0;
}

.service-benefits h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.benefit-item {
    flex: 1;
    min-width: 260px;
}

.benefit-item h4 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-address {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-email-display {
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 10px;
}

.schedule-list {
    margin-top: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.schedule-day {
    color: var(--text-dark);
    font-weight: 500;
}

.schedule-hours {
    color: var(--text-medium);
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.directions-section {
    padding: 60px 0;
}

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

.directions-section > p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.directions-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.direction-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.directions-note {
    margin-top: 25px;
    font-size: 15px;
    color: var(--text-light);
}

.faq-section {
    padding: 60px 0;
}

.faq-section h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.faq-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.thanks-section {
    padding: 80px 0;
}

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

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

.thanks-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-message {
    margin-bottom: 40px;
}

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: left;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.timeline-step {
    display: flex;
    gap: 20px;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 45px;
}

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

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

.thanks-note {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-note p {
    margin: 0;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.additional-resources {
    padding: 60px 0;
}

.additional-resources h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

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

.resource-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.resource-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.btn-link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.btn-link-arrow:hover {
    color: var(--primary-dark);
}

.legal-page {
    padding: 60px 0;
}

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

.legal-content h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

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

.legal-content ul li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        width: 100%;
    }

    .hero-content h2 {
        font-size: 32px;
    }

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

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

    .value-grid,
    .values-grid,
    .benefits-grid,
    .resource-cards {
        flex-direction: column;
    }

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

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