* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #1e4620;
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.intro-left {
    flex: 0 0 45%;
    padding-right: 50px;
    background-color: #ffffff;
}

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

.intro-right {
    flex: 1;
    padding-left: 50px;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #4a5568;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 16px 24px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1e4620;
}

.service-note {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 24px;
    background-color: #fff3cd;
    border-radius: 6px;
}

.service-note p {
    font-size: 15px;
    color: #856404;
    margin: 0;
}

.process-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.process-content {
    flex: 1;
    padding-right: 60px;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #2c5f2d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #4a5568;
}

.process-image {
    flex: 0 0 45%;
    background-color: #e8f5e9;
}

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

.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 18px;
    margin-bottom: 48px;
    color: #4a5568;
}

.contact-form {
    text-align: left;
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
}

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

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

.submit-button:hover {
    background-color: #1e4620;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #81c784;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e4620;
}

.cookie-reject {
    background-color: #718096;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #4a5568;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 40px 80px;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.9;
}

.about-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 60px;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.about-right {
    flex: 0 0 45%;
    background-color: #e8f5e9;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 0 1 calc(50% - 20px);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.philosophy-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 60px;
}

.team-content {
    flex: 0 0 40%;
    background-color: #e8f5e9;
}

.team-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.values-section {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 100px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.values-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.value-block {
    flex: 1;
}

.value-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.value-block p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a5568;
}

.service-pricing {
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 18px;
    color: #4a5568;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8f5e9;
}

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

.pricing-info {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.pricing-info h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.pricing-info > p {
    max-width: 900px;
    margin: 0 auto 48px;
    font-size: 18px;
    text-align: center;
    color: #4a5568;
}

.pricing-factors {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.factor {
    flex: 0 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.factor h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.factor p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #2c5f2d;
}

.cta-section .cta-button:hover {
    background-color: #f8f9fa;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.7;
}

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    padding: 24px;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    color: #2c5f2d;
    line-height: 1.7;
}

.contact-image {
    flex: 0 0 45%;
    background-color: #e8f5e9;
}

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

.service-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.service-area h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-area p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.response-time {
    background-color: #f8f9fa;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.response-content {
    flex: 1;
}

.response-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.response-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 19px;
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-page ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-date {
    margin-top: 48px;
    font-style: italic;
    color: #718096;
}

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 16px;
    color: #4a5568;
}

.thanks-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #ffffff;
    padding: 80px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-content > p {
    font-size: 22px;
    margin-bottom: 60px;
    opacity: 0.95;
}

.thanks-info {
    margin-bottom: 48px;
}

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

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: left;
}

.next-steps .step {
    flex: 0 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: 8px;
}

.next-steps .step-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.next-steps .step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.next-steps .step p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.thanks-service-info {
    margin-bottom: 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.btn-primary:hover {
    background-color: #f8f9fa;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.thanks-additional {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.thanks-additional h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.additional-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.info-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .process-section,
    .about-content,
    .team-section,
    .contact-content,
    .service-detail-item {
        flex-direction: column;
    }

    .intro-left,
    .intro-right,
    .process-content,
    .process-image,
    .about-left,
    .about-right,
    .team-content,
    .team-text,
    .contact-info,
    .contact-image,
    .service-detail-content,
    .service-detail-image {
        flex: 1;
        padding: 0;
    }

    .service-card,
    .philosophy-item,
    .factor {
        flex: 0 1 100%;
    }

    .values-split,
    .response-time {
        flex-direction: column;
    }

    .next-steps .step {
        flex: 0 1 100%;
    }

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