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

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #52b788;
    --accent-color: #95d5b2;
    --dark-color: #1b4332;
    --text-color: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 80px 0;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-section {
    padding: 80px 0;
}

.intro-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.intro-card p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 48%;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.process-section {
    padding: 100px 0;
}

.process-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.process-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
}

.process-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 60px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.process-card p {
    color: var(--text-light);
}

.process-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: white;
}

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

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

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--accent-color);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-card {
    text-align: center;
    color: white;
}

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

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

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

.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
    display: flex;
    overflow: hidden;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 48px;
}

.service-detail-header {
    margin-bottom: 28px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-description h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-description p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: var(--accent-color);
}

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

.btn-select-service {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-select-service:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 60px auto;
    padding: 48px;
    border-radius: 12px;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

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

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

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

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

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

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

.about-content {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.philosophy-card {
    flex: 1;
    min-width: 260px;
    max-width: 48%;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

.expertise-section {
    padding: 80px 0;
}

.expertise-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

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

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.approach-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

.values-section {
    padding: 80px 0;
}

.values-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.values-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

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

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

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

.contact-info-section {
    flex: 1;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

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

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inquiry-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.inquiry-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.inquiry-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-card > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

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

.thanks-details strong {
    color: var(--dark-color);
}

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

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.next-steps {
    display: flex;
    gap: 32px;
    text-align: left;
}

.step-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.legal-content {
    padding: 80px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.legal-document h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.legal-document ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-document ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-document a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-document a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .main-nav.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 20px;
        gap: 16px;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .service-card {
        max-width: 100%;
    }

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

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

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
        min-height: 300px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .expertise-layout {
        flex-direction: column-reverse;
    }

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

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

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

    .philosophy-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .intro-card {
        padding: 32px 24px;
    }

    .modal-content {
        margin: 20px;
        padding: 32px 24px;
    }

    .legal-document {
        padding: 32px 24px;
    }

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

    .thanks-card h1 {
        font-size: 32px;
    }
}