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

html {
    scroll-behavior: smooth;
}

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

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

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

.center {
    text-align: center;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2d5a3d;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

.hero-split {
    margin-top: 70px;
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-visual {
    flex: 1;
    background: #e8ede9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #234a30;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #2d5a3d;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2d5a3d;
    color: #ffffff;
}

.cta-inline {
    color: #2d5a3d;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: #234a30;
}

.split-layout {
    display: flex;
    align-items: center;
}

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

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

.visual-half {
    flex: 1;
    background: #f0f4f1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-half.dark-bg {
    background: #2d5a3d;
}

.content-half h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-half p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-block {
    padding: 100px 0;
}

.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #2d5a3d;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #2d5a3d;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2d5a3d;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.service-link:hover {
    color: #234a30;
}

.problem-amplification {
    padding: 100px 0;
}

.methodology {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.step {
    flex: 1;
    min-width: 240px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e8ede9;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d5a3d;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.trust-indicators {
    padding: 100px 0;
}

.stats-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px;
    background: #f0f4f1;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #2d5a3d;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-top: 10px;
}

.testimonials-inline {
    padding: 100px 0;
    background: #2d5a3d;
}

.testimonials-inline blockquote {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.testimonials-inline p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonials-inline cite {
    font-size: 1rem;
    color: #e8ede9;
    font-style: normal;
}

.full-services-reveal {
    padding: 100px 0;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d5a3d;
}

.service-detail h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-detail p {
    font-size: 1rem;
    color: #4a4a4a;
    max-width: 600px;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5a3d;
    white-space: nowrap;
    margin-left: 30px;
}

.form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background: #234a30;
}

.final-cta {
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
}

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

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

.footer-col ul a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #234a30;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(45, 90, 61, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background: #2d5a3d;
    color: #ffffff;
}

.btn-accept:hover {
    background: #234a30;
}

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

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

.page-hero {
    margin-top: 70px;
    padding: 120px 0 80px;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.page-hero .lead {
    font-size: 1.3rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 0;
}

.philosophy {
    padding: 100px 0;
    background: #f8f9fa;
}

.philosophy-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

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

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.capabilities {
    padding: 100px 0;
}

.team-approach {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto 60px;
}

.approach-blocks {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.approach-block {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
}

.approach-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.values {
    padding: 100px 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 35px 40px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d5a3d;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2d5a3d;
    font-weight: 700;
}

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

.location-info {
    padding: 100px 0;
    background: #f8f9fa;
}

.cta-about {
    padding: 100px 0;
}

.services-detailed-page {
    padding: 100px 0;
}

.service-full {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-content {
    flex: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

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

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #234a30;
}

.service-image {
    flex: 1;
    min-height: 400px;
    background: #f0f4f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.pricing-notes {
    padding: 100px 0;
    background: #f8f9fa;
}

.notes-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

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

.note-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d5a3d;
    font-weight: 700;
}

.note-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.services-cta {
    padding: 100px 0;
}

.services-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.services-cta p {
    text-align: center;
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.contact-content {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2d5a3d;
    font-weight: 700;
}

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

.contact-block a {
    color: #2d5a3d;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.response-info {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.response-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

.response-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.contact-alternative {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-alternative h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-alternative p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.faq-contact {
    padding: 100px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2d5a3d;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-hero {
    margin-top: 70px;
    padding: 100px 0;
    background: #f8f9fa;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-hero .lead {
    font-size: 1.3rem;
    color: #4a4a4a;
}

.thanks-content {
    padding: 100px 0;
}

.thanks-message h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

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

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d5a3d;
    line-height: 1;
    min-width: 60px;
}

.step-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-reference {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.service-reference h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-note {
    font-size: 0.95rem;
    color: #666;
}

.additional-resources {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.additional-resources h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-resources p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.resource-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    padding: 12px 24px;
    background: #f8f9fa;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.resource-link:hover {
    background: #2d5a3d;
    color: #ffffff;
    border-color: #2d5a3d;
}

.legal-page {
    margin-top: 70px;
    padding: 80px 0;
}

.updated-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d5a3d;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content,
    .hero-visual {
        min-height: 400px;
    }

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

    .content-half {
        padding: 60px 40px;
    }

    .visual-half {
        min-height: 400px;
    }

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

    .service-image {
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .content-half {
        padding: 50px 30px;
    }

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

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

    .services-grid,
    .method-steps,
    .approach-blocks,
    .philosophy-grid,
    .notes-grid {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .price-tag {
        margin-left: 0;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text .lead {
        font-size: 1.1rem;
    }

    .content-half h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .main-form {
        padding: 35px 25px;
    }
}