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

:root {
    --primary-color: #4a90a4;
    --secondary-color: #7b9e87;
    --accent-color: #d4a574;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e1e8ed;
}

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

.ad-disclosure {
    background-color: #f0f4f8;
    color: #5a6c7d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3a7a8e;
}

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

.intro-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

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

.intro-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

.services-showcase {
    padding: 100px 40px;
    background-color: var(--background-light);
}

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 70px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    background-color: var(--background-white);
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

.service-details {
    flex: 1;
    padding: 40px;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

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

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

.select-service {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6a8876;
}

.cta-section {
    padding: 120px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #f0f4f8;
}

.form-section {
    padding: 100px 40px;
    background-color: var(--background-white);
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.form-container > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    padding: 16px 38px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #3a7a8e;
}

.trust-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.trust-grid {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px 40px;
    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: 30px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #3a7a8e;
}

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

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

.page-header {
    background-color: var(--background-light);
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.about-intro {
    padding: 100px 40px;
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

.philosophy-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

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

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

.philosophy-card {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
}

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

.philosophy-card p {
    font-size: 16px;
    color: var(--text-light);
}

.values-section {
    padding: 100px 40px;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.value-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

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

.values-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

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

.team-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.team-member {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
}

.member-role {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    padding: 100px 40px;
}

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

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

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

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

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

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

.service-detail-visual {
    flex: 1;
    background-color: #e8ebe9;
}

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

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

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

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

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

.service-detail-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: var(--text-dark);
}

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

.service-features li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.process-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.timeline-step {
    flex: 1;
    background-color: var(--background-white);
    padding: 35px;
    text-align: center;
}

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

.timeline-step h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.timeline-step p {
    font-size: 15px;
    color: var(--text-light);
}

.faq-section {
    padding: 100px 40px;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-visual {
    flex: 1;
    background-color: #e8ebe9;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.contact-note {
    padding: 20px;
    background-color: var(--background-light);
}

.contact-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.location-section {
    padding: 80px 40px;
    background-color: var(--background-light);
    max-width: 1200px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.location-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.response-section {
    padding: 80px 40px;
}

.response-content {
    max-width: 1200px;
    margin: 0 auto;
}

.response-content h2 {
    font-size: 34px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.response-grid {
    display: flex;
    gap: 40px;
}

.response-item {
    flex: 1;
    background-color: var(--background-light);
    padding: 35px;
}

.response-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.response-item p {
    font-size: 15px;
    color: var(--text-light);
}

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

.inquiry-content {
    max-width: 900px;
    margin: 0 auto;
}

.inquiry-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.inquiry-checklist {
    list-style: none;
    margin-bottom: 25px;
}

.inquiry-checklist li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
}

.inquiry-checklist li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
}

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

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

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

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

.thanks-details {
    background-color: var(--background-light);
    padding: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

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

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.step-item {
    flex: 1;
    display: flex;
    gap: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

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

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

.btn-primary {
    padding: 16px 38px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 16px 38px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.legal-page {
    padding: 80px 40px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 14px;
    margin-top: 25px;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin: 15px 0 15px 25px;
}

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

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

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

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

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

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

    .intro-content,
    .about-content-split,
    .values-content,
    .contact-layout {
        flex-direction: column;
    }

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

    .trust-grid,
    .philosophy-grid,
    .process-timeline,
    .response-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

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

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