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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hero-image-container {
    width: 100%;
    height: 500px;
    background-color: #e8f4f8;
    overflow: hidden;
}

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

.hero-content {
    padding: 40px 50px 60px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

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

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

.intro-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.services-grid-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px 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 8px 25px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.trust-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trust-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom .disclaimer {
    color: #95a5a6;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .trust-card {
        flex: 1 1 100%;
    }

    .intro-card {
        padding: 30px;
    }

    .form-card {
        padding: 30px 25px;
    }
}

.page-header {
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

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

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

.about-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.about-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.philosophy-section, .team-section, .values-section {
    margin-bottom: 60px;
}

.philosophy-section h2, .team-section h2, .values-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.philosophy-cards, .team-qualities {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.philosophy-card, .quality-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.philosophy-card h3, .quality-item h4 {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 15px;
}

.philosophy-card p, .quality-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.location-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.location-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.location-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button, .cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #764ba2;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover, .cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.detailed-services {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

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

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

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

.additional-info {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.info-cards .info-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.info-cards .info-card h3 {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 15px;
}

.info-cards .info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.contact-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1 1 400px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

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

.contact-item h3 {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 10px;
}

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

.email-display {
    color: #2c3e50;
    font-weight: 500;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.map-placeholder {
    flex: 1 1 400px;
}

.map-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.map-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.map-content p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.map-box {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.faq-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.faq-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.faq-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.faq-card h3 {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-info h3 {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 10px;
}

.selected-service-info p {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 30px;
}

.next-steps h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

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

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

    .philosophy-card, .quality-item, .value-card, .faq-card {
        flex: 1 1 100%;
    }

    .thanks-card {
        padding: 40px 30px;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}