* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-main a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-text-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.intro-image-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-text-wrap {
    flex: 1;
}

.intro-text-wrap h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text-wrap p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

.service-card-split {
    display: flex;
    margin-bottom: 0;
    background-color: #ffffff;
}

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

.service-image-side {
    flex: 1;
    overflow: hidden;
}

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

.service-content-side {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-side h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content-side p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-text-side {
    flex: 1;
}

.form-text-side h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-text-side p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.form-side {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-container h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
}

.testimonials-split {
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.footer-main {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
}

.page-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.page-hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.page-hero-left p {
    font-size: 1.3rem;
    color: #555;
}

.page-hero-right {
    flex: 1;
    overflow: hidden;
}

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

.about-content-split {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

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

.value-card-split {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 2rem;
}

.value-card-split.reverse {
    flex-direction: row-reverse;
}

.value-content {
    padding: 3rem;
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.team-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-about-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

.services-hero {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
}

.services-detailed {
    background-color: #f8f9fa;
}

.service-detail-split {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 0;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.feature-item::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.pricing-label {
    font-size: 1.1rem;
    color: #555;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.btn-service-action {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service-action:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.services-cta {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

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

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-cta-alt {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-alt:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-hero {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
}

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-info-left {
    flex: 1;
    padding-right: 3rem;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.info-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

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

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-overlay {
    text-align: center;
    color: #2c3e50;
}

.map-overlay p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-detail {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.visit-info-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.visit-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.visit-info-container h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    text-align: center;
}

.visit-directions {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.direction-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.direction-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.office-hours-note {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.office-hours-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.office-hours-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-main-text {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.thanks-service-info {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-contact-reminder {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-contact-reminder p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #555;
}

.thanks-hours {
    font-size: 0.95rem;
    color: #7f8c8d;
}

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

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-thanks-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-thanks-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-thanks-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-thanks-secondary:hover {
    background-color: #d5dbdd;
    transform: translateY(-2px);
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-update {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-container li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .service-card-split,
    .service-card-split.reverse,
    .intro-container,
    .form-container,
    .testimonials-split,
    .footer-container,
    .page-hero-split,
    .values-split-container,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-info-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .service-content-side,
    .form-text-side,
    .form-side {
        padding: 2rem;
    }

    .hero-text-content h1,
    .page-hero-left h1 {
        font-size: 2rem;
    }

    .services-header h2,
    .values-header h2 {
        font-size: 1.8rem;
    }

    .contact-info-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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