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

.header-main {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.ad-notice {
    font-size: 12px;
    color: #94a3b8;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #60a5fa;
}

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

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1e293b;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-text-box {
    max-width: 600px;
    color: #ffffff;
}

.hero-text-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e2e8f0;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2563eb;
}

.intro-block {
    padding: 80px 0;
    background-color: #f8fafc;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #334155;
    text-align: center;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
}

.value-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e2e8f0;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

.text-section-dark {
    padding: 80px 0;
    background-color: #1e293b;
    color: #ffffff;
}

.text-section-dark h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.text-section-dark p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.services-listing {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.service-row {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8fafc;
    border-radius: 12px;
    align-items: flex-start;
}

.service-description {
    flex: 2;
}

.service-description h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #475569;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #334155;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.service-price-box {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 220px;
}

.price-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2563eb;
}

.form-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1e293b;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content img {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #475569;
}

.link-inline {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #2563eb;
    text-decoration: underline;
}

.site-footer {
    background-color: #1a2332;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #3b82f6;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2563eb;
}

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

.cookie-reject:hover {
    background-color: #475569;
}

.page-hero {
    background-color: #1e293b;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-lead {
    font-size: 20px;
    color: #cbd5e1;
}

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

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

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

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

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1e293b;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

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

.expertise-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.expertise-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.expertise-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.approach-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-content img {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.approach-points {
    flex: 1;
}

.approach-point {
    margin-bottom: 30px;
}

.approach-point h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e293b;
}

.approach-point p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

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

.values-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1e293b;
}

.values-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

.cta-section-alt {
    padding: 80px 0;
    background-color: #1e293b;
    text-align: center;
    color: #ffffff;
}

.cta-section-alt h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section-alt p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2563eb;
}

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

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

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #475569;
}

.service-includes {
    margin: 30px 0;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-includes ul {
    list-style: none;
    margin: 0;
}

.service-includes li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #334155;
    font-size: 15px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-price-display {
    margin-top: 30px;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.btn-service {
    padding: 12px 28px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #2563eb;
}

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

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1e293b;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e293b;
}

.process-step p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

.cta-section-services {
    padding: 80px 0;
    background-color: #1e293b;
    text-align: center;
    color: #ffffff;
}

.cta-section-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section-services p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

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

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

.contact-info {
    flex: 1.5;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #475569;
}

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

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 600;
}

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

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

.contact-note {
    padding: 20px;
    background-color: #f0f9ff;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.map-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.map-section h3 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #1e293b;
}

.map-description {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #475569;
}

.map-placeholder {
    background-color: #e2e8f0;
    border-radius: 12px;
    padding: 60px 40px;
}

.map-content {
    max-width: 700px;
    margin: 0 auto;
}

.map-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
}

.transport-list {
    list-style: none;
    margin-bottom: 20px;
}

.transport-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #334155;
    border-bottom: 1px solid #cbd5e1;
}

.parking-note {
    font-size: 15px;
    color: #64748b;
    margin-top: 20px;
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.faq-item {
    margin-bottom: 30px;
}

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

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

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

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

.thanks-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 40px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-lead {
    font-size: 20px;
    margin-bottom: 40px;
    color: #475569;
}

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

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 20px;
}

.thanks-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #334155;
}

.thanks-note {
    padding: 20px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #92400e;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #eff6ff;
}

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

.legal-page h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1e293b;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #475569;
}

.legal-page h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #334155;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #475569;
}

.legal-page ul {
    margin: 16px 0 24px 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #475569;
}

.legal-page a {
    color: #3b82f6;
    text-decoration: none;
}

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

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #64748b;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text-box h2 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 16px;
    }

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

    .service-row {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .service-price-display {
        flex-direction: column;
        gap: 20px;
    }

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

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