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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4b5563;
    max-width: 560px;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
}

.services-section {
    padding: 80px 40px;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

.service-item-split {
    display: flex;
    margin-bottom: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4b5563;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 12px;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-section-split {
    display: flex;
}

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #6b7280;
}

.service-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.info-split {
    display: flex;
}

.info-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #1f2937;
    color: #ffffff;
}

.info-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.info-content p {
    font-size: 17px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.info-stats {
    flex: 1;
    padding: 80px 60px;
    background-color: #111827;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

.main-footer {
    background-color: #1a1a1a;
    color: #9ca3af;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-col p {
    line-height: 1.7;
}

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

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

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #60a5fa;
}

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

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

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 20px;
    line-height: 1.6;
}

.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 100px 40px 80px;
    color: #ffffff;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-content-centered p {
    font-size: 20px;
    opacity: 0.95;
}

.about-split {
    display: flex;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-split {
    display: flex;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8fafc;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.values-list li {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4b5563;
    padding-left: 28px;
    position: relative;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2563eb;
    margin-bottom: 16px;
    font-weight: 600;
}

.member-info p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

.process-split {
    display: flex;
}

.process-content {
    flex: 1.2;
    padding: 80px 60px;
    background-color: #ffffff;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    min-width: 60px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #6b7280;
}

.process-visual {
    flex: 1;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-about {
    padding: 80px 40px;
    background-color: #f8fafc;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 60px 40px;
}

.service-detail-split {
    display: flex;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.price-box {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    border-left: 4px solid #2563eb;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

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

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4b5563;
    padding-left: 28px;
    position: relative;
}

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

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

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

.booking-cta {
    padding: 80px 40px;
    background-color: #1f2937;
    color: #ffffff;
    text-align: center;
}

.booking-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.booking-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info {
    flex: 1;
    padding: 40px 60px 40px 0;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.email-display {
    color: #2563eb;
    font-weight: 600;
}

.email-note {
    font-size: 14px;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.location-details {
    padding: 80px 40px;
    background-color: #f8fafc;
}

.location-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.directions-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.directions-text {
    flex: 1;
    padding: 40px 60px 40px 0;
}

.directions-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.directions-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.directions-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.directions-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-contact {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 15px);
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

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

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f8fafc;
}

.thanks-content {
    max-width: 900px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

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

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

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #4b5563;
    padding-left: 24px;
    position: relative;
}

.thanks-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

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

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f8fafc;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.legal-page {
    padding: 60px 40px 80px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.updated {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4b5563;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4b5563;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-item-split,
    .form-section-split,
    .info-split,
    .about-split,
    .values-split,
    .process-split,
    .contact-split,
    .directions-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .intro-image,
    .intro-text,
    .service-content,
    .service-visual,
    .form-visual,
    .form-container,
    .info-content,
    .info-stats,
    .about-text,
    .about-image,
    .values-image,
    .values-text,
    .process-content,
    .process-visual,
    .contact-info,
    .contact-map,
    .directions-text,
    .directions-visual,
    .service-detail-content,
    .service-detail-image {
        min-height: 400px;
    }

    .faq-item {
        max-width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .section-header h2,
    .team-section h2 {
        font-size: 32px;
    }

    .hero-left,
    .intro-text,
    .service-content,
    .form-container,
    .info-content,
    .info-stats,
    .about-text,
    .values-text,
    .process-content,
    .contact-info,
    .directions-text,
    .service-detail-content {
        padding: 40px 30px;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}