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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e2e;
    background-color: #f8f9f6;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a1f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #4a6b3d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5a1f;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1f3d14;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #4a6b3d;
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #4a7c3a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #3d6630;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #f4f6f1;
}

.section-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: #1f3d14;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4a6b3d;
    margin-bottom: 1.2rem;
}

.intro-image {
    flex: 1;
    background-color: #556b48;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #1f3d14;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    max-width: 360px;
    padding: 2rem;
    background-color: #f8faf6;
    border-radius: 8px;
    border: 1px solid #e1e8dc;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2d5a1f;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a6b3d;
    font-size: 1rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f4f6f1;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #1f3d14;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4a6b3d;
}

.services-list {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    color: #1f3d14;
    margin-bottom: 1rem;
}

.service-details p {
    color: #4a6b3d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a7c3a;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #4a7c3a;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4a7c3a;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #4a7c3a;
    color: #ffffff;
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #1f3d14;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a6b3d;
}

.contact-form {
    background-color: #f8faf6;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d5a1f;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #c9d5be;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c3a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #4a7c3a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3d6630;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #f4f6f1;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.2rem;
    color: #1f3d14;
    margin-bottom: 2rem;
}

.trust-content {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4a7c3a;
}

.trust-item p {
    color: #4a6b3d;
    font-size: 1.1rem;
    text-align: left;
}

.main-footer {
    background-color: #2d4a22;
    color: #d4e3cc;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #b8cdb0;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d4e3cc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1280px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #c4d7ba;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: #b8cdb0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d4a22;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #a8d08d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #4a7c3a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6630;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.content-container h1 {
    font-size: 2.5rem;
    color: #1f3d14;
    margin-bottom: 2rem;
}

.content-container h2 {
    font-size: 1.8rem;
    color: #2d5a1f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-container h3 {
    font-size: 1.4rem;
    color: #3d6630;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.content-container h4 {
    font-size: 1.2rem;
    color: #4a7c3a;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.content-container p {
    margin-bottom: 1rem;
    color: #4a6b3d;
    line-height: 1.7;
}

.content-container ul,
.content-container ol {
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: #4a6b3d;
}

.content-container li {
    margin-bottom: 0.5rem;
}

.content-container a {
    color: #4a7c3a;
    text-decoration: underline;
}

.content-container a:hover {
    color: #2d5a1f;
}

.page-header {
    background-color: #3d6630;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #d4e3cc;
}

.contact-page-content {
    padding: 4rem 2rem;
    background-color: #f4f6f1;
}

.contact-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: #1f3d14;
    margin-bottom: 2rem;
}

.info-block {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a7c3a;
}

.info-block h3 {
    font-size: 1.3rem;
    color: #2d5a1f;
    margin-bottom: 0.8rem;
}

.info-block p {
    color: #4a6b3d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.email-display {
    font-weight: 600;
    color: #2d5a1f;
}

.email-note {
    font-size: 0.9rem;
    color: #6b8e5f;
    font-style: italic;
}

.note {
    font-size: 0.9rem;
    color: #6b8e5f;
    font-style: italic;
}

.contact-image {
    flex: 1;
    background-color: #556b48;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-form-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    color: #1f3d14;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #4a6b3d;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.form-privacy {
    margin-bottom: 1.5rem;
}

.response-time {
    padding: 4rem 2rem;
    background-color: #f4f6f1;
    text-align: center;
}

.response-time h2 {
    font-size: 2.2rem;
    color: #1f3d14;
    margin-bottom: 3rem;
}

.steps-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4a7c3a;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #2d5a1f;
    margin-bottom: 1rem;
}

.step p {
    color: #4a6b3d;
    line-height: 1.7;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h1 {
    font-size: 2.8rem;
    color: #1f3d14;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #4a6b3d;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #556b48;
    border-radius: 8px;
    overflow: hidden;
}

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

.mission-section {
    padding: 5rem 2rem;
    background-color: #f4f6f1;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    color: #1f3d14;
    margin-bottom: 2rem;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 1.2rem;
    color: #4a6b3d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-detailed h2 {
    font-size: 2.5rem;
    color: #1f3d14;
    text-align: center;
    margin-bottom: 3rem;
}

.values-list {
    max-width: 1100px;
    margin: 0 auto;
}

.value-block {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #f8faf6;
    border-radius: 8px;
    border-left: 5px solid #4a7c3a;
}

.value-block h3 {
    font-size: 1.6rem;
    color: #2d5a1f;
    margin-bottom: 1rem;
}

.value-block p {
    color: #4a6b3d;
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f4f6f1;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: #1f3d14;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.2rem;
    color: #4a6b3d;
    max-width: 800px;
    margin: 0 auto;
}

.team-image {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #556b48;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.3rem;
    color: #1f3d14;
    margin-bottom: 1.5rem;
}

.approach-text p {
    color: #4a6b3d;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background-color: #556b48;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-about {
    padding: 4rem 2rem;
    background-color: #3d6630;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #d4e3cc;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #3d6630;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.services-intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 3rem 2rem;
}

.services-intro-text h1 {
    font-size: 2.8rem;
    color: #1f3d14;
    margin-bottom: 1rem;
}

.services-intro-text p {
    font-size: 1.2rem;
    color: #4a6b3d;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.service-full {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #556b48;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 2.5rem;
}

.service-number {
    display: inline-block;
    background-color: #4a7c3a;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 2rem;
    color: #1f3d14;
    margin-bottom: 1rem;
}

.service-content-left p,
.service-content-right p {
    color: #4a6b3d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a6b3d;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c3a;
    font-weight: 700;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e1e8dc;
}

.price-label {
    font-size: 0.9rem;
    color: #6b8e5f;
    display: block;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4a7c3a;
    display: block;
}

.services-cta-section {
    padding: 4rem 2rem;
    background-color: #3d6630;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.services-cta-section p {
    font-size: 1.2rem;
    color: #d4e3cc;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 4rem 2rem;
    background-color: #f8f9f6;
    min-height: 70vh;
}

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

.thanks-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    text-align: center;
    font-size: 2.8rem;
    color: #1f3d14;
    margin-bottom: 1.5rem;
}

.thanks-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.thanks-message p {
    font-size: 1.2rem;
    color: #4a6b3d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.next-steps {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    color: #1f3d14;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #4a7c3a;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    color: #2d5a1f;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #4a6b3d;
    line-height: 1.6;
}

.thanks-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 1.8rem;
    color: #1f3d14;
    margin-bottom: 1rem;
}

.content-left p {
    color: #4a6b3d;
    margin-bottom: 1rem;
}

.info-links {
    list-style: none;
    padding: 0;
}

.info-links li {
    margin-bottom: 0.8rem;
}

.info-links a {
    color: #4a7c3a;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.info-links a:hover {
    color: #2d5a1f;
    text-decoration: underline;
}

.content-right {
    flex: 1;
    background-color: #556b48;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-actions {
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-section,
    .section-wrapper,
    .service-item,
    .footer-content,
    .trust-content,
    .values-grid,
    .contact-wrapper,
    .story-content,
    .approach-wrapper,
    .service-full,
    .thanks-content,
    .form-row {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .story-text h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .content-container {
        padding: 1rem;
    }

    .content-container h1 {
        font-size: 2rem;
    }

    .content-container h2 {
        font-size: 1.5rem;
    }

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

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

    .thanks-container h1 {
        font-size: 2rem;
    }

    .hero-content,
    .intro-content,
    .service-details,
    .service-content-left,
    .service-content-right {
        padding: 2rem;
    }
}