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

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #1a5490;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5490;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.featured-service-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.cta-link {
    display: inline-block;
    margin-top: 20px;
    color: #1a5490;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a5490;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #134070;
    border-bottom-color: #134070;
}

.services-preview-section {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-card h4 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #555;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    margin: 0 20px 25px;
}

.centered-link {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.appointment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.appointment-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #1a5490;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

.info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.info-section h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.info-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.cta-final-section {
    padding: 80px 0;
    background-color: #1a5490;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #ecf0f1;
    transform: scale(1.05);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 14px;
}

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

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

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

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

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

.page-header-section {
    padding: 60px 0;
    background-color: #1a5490;
    color: #ffffff;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    font-weight: 300;
}

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

.service-detail-item {
    margin-bottom: 80px;
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.service-pricing-box {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-right: 10px;
}

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

.price-note {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

.about-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a5490;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.values-section > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a5490;
}

.value-item p {
    font-size: 17px;
    color: #555;
}

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    font-size: 15px;
    color: #555;
}

.team-philosophy-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-philosophy-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.location-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.location-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.location-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a5490;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #856404;
}

.contact-image-block {
    flex: 1;
    background-color: #ecf0f1;
}

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

.directions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.directions-section h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a5490;
}

.directions-section p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5490;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.email-text {
    color: #1a5490;
    font-weight: 600;
}

.thanks-service-info {
    background-color: #e8f4f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.thanks-service-info p {
    font-size: 18px;
    color: #2c3e50;
}

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

.legal-page-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page-section h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-page-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a5490;
}

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

.legal-page-section h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page-section p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
}

.legal-page-section a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout,
    .about-layout,
    .location-layout,
    .contact-layout,
    .service-detail-layout {
        flex-direction: column;
    }

    .services-cards,
    .trust-grid,
    .process-grid,
    .footer-grid {
        flex-direction: column;
    }

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

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