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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #5d8a6e;
    --accent-color: #8fb89c;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

.ad-disclosure {
    background: #fef9e7;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #7d6608;
    border-bottom: 1px solid #f4e4a6;
}

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

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

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

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

.nav-menu a {
    color: var(--text-light);
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-content {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background-color: var(--accent-color);
}

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

.cta-primary:hover {
    background: #234a2f;
}

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

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

.value-section {
    background: var(--bg-white);
    padding: 80px 24px;
}

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

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

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

.value-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.value-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.process-section {
    background: var(--primary-color);
    padding: 80px 24px;
    color: white;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.process-card {
    flex: 1 1 280px;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    opacity: 0.9;
}

.services-highlight {
    background: var(--bg-white);
    padding: 80px 24px;
}

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

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

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

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

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

.trust-section {
    background: var(--bg-white);
    padding: 80px 24px;
    text-align: center;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.cta-final {
    background: var(--secondary-color);
    padding: 80px 24px;
    text-align: center;
    color: white;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 64px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.footer-column a {
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.disclaimer {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

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

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

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

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

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

.page-header {
    background: var(--bg-light);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.services-detailed {
    padding: 80px 24px;
}

.service-card-full {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 24px;
}

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

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

.cta-services {
    background: var(--bg-light);
    padding: 64px 24px;
    text-align: center;
}

.cta-services h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

.about-intro {
    padding: 80px 24px;
    background: var(--bg-white);
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-values {
    padding: 80px 24px;
    background: var(--bg-light);
}

.about-values h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-expertise {
    padding: 80px 24px;
    background: var(--bg-white);
}

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

.industry-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.industry-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.about-approach {
    padding: 80px 24px;
    background: var(--bg-light);
}

.about-approach h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-approach p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-technology {
    padding: 80px 24px;
    background: var(--bg-white);
}

.about-technology h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.tech-item {
    flex: 1 1 280px;
    padding: 24px;
}

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

.tech-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 80px 24px;
    background: var(--secondary-color);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-main {
    padding: 80px 24px;
}

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

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.contact-section h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    background-color: var(--accent-color);
}

.location-details {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.location-details h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.location-details p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-cta {
    padding: 64px 24px;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 80px 24px;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.thanks-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-info ul {
    list-style: none;
    margin-top: 16px;
}

.thanks-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

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

.thanks-note {
    background: #fff3cd;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #ffc107;
}

.thanks-note p {
    font-size: 14px;
    color: #856404;
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-additional {
    padding: 80px 24px;
    background: var(--bg-light);
}

.thanks-additional h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
}

.additional-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1 1 300px;
    background: white;
    padding: 32px;
    border-radius: 8px;
}

.additional-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.additional-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.additional-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

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

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .split-container {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

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