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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d5a3d;
    --accent-color: #4a7c59;
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #3d6b4d;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(45, 90, 61, 0.4));
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.5;
    opacity: 0.95;
}

.story-flow {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-insight {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-left,
.split-right {
    flex: 1;
    min-width: 300px;
}

.split-left img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.split-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.split-right p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.problem-amplify {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

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

.amplify-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.amplify-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.amplify-text em {
    font-style: italic;
    opacity: 0.9;
}

.visual-break {
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.solution-intro {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.solution-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.solution-narrow h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.solution-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.trust-cards {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-size: 1.4rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.benefit-reveal {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.reveal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.reveal-block {
    flex: 1.2;
    min-width: 300px;
}

.reveal-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.reveal-image {
    flex: 1;
    min-width: 300px;
}

.reveal-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.services-showcase {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 1.5rem 1rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

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

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.selected-service-info {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-info p {
    margin: 0;
    color: var(--text-dark);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.final-trust {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.trust-narrow h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.trust-narrow p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column li {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

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

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: white;
}

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    margin-top: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story,
.services-intro,
.contact-content,
.legal-page {
    padding: 4rem 2rem;
}

.story-container,
.intro-text,
.contact-layout,
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-block h2,
.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p,
.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-split {
    margin: 4rem 0;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.values-section {
    margin: 4rem 0;
}

.values-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.team-approach {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.team-approach h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.cta-about {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

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

.services-intro {
    background: var(--bg-light);
    padding: 3rem 2rem;
}

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

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.services-full-list {
    padding: 3rem 2rem;
}

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

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

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

.service-image img {
    width: 100%;
    border-radius: 12px;
    background-color: var(--bg-light);
}

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

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 1rem;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-header {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
}

.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-block,
.contact-additional {
    flex: 1;
    min-width: 300px;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.non-clickable-email {
    font-weight: 600;
    color: var(--primary-color);
}

.detail-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.faq-box {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.legal-page {
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    margin-top: 70px;
}

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

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-details {
    margin: 2rem 0;
}

.order-summary {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.order-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.order-summary p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.next-steps {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

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

    .split-container,
    .reveal-container,
    .story-split,
    .service-item {
        flex-direction: column;
    }

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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