* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 20px;
}

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-primary, .btn-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
}

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

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

.nav-menu a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 11px;
    color: #64748b;
    padding: 4px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background-color: #f8fafc;
}

main {
    min-height: calc(100vh - 300px);
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 60px 40px;
    background-color: #f8fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.intro-section, .why-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.split-text {
    flex: 1;
}

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

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

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

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

.services-showcase {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #64748b;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-content {
    flex: 1;
}

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

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

.benefit-list {
    list-style: none;
    margin-bottom: 24px;
}

.benefit-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    color: #334155;
}

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

.price-tag {
    font-size: 32px;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #059669;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

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

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

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 14px;
    color: #64748b;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    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: #2563eb;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.testimonials-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.testimonial-card {
    flex: 1;
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.cta-final {
    background-color: #1e293b;
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 32px 40px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.disclaimer-section p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.6;
}

.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 40px 20px;
}

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

.footer-column h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

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

.footer-column ul li a:hover {
    color: #ffffff;
}

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

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

.page-hero {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    color: #64748b;
}

.story-section, .approach-section, .values-section, .team-section, .experience-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

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

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

.team-member h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-role {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

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

.approach-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: #334155;
    font-size: 16px;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
    font-size: 18px;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #eff6ff;
    padding: 32px;
    border-radius: 8px;
    border-top: 4px solid #2563eb;
}

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

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

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

.experience-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

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

.cta-about {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #1e3a8a;
    border-radius: 12px;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 700;
}

.services-detail-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.service-detail-header {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

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

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

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

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

.service-detail-intro h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.price-display {
    font-size: 36px;
    color: #059669;
    font-weight: 800;
}

.service-detail-content {
    max-width: 900px;
}

.service-detail-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
}

.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #f8fafc;
}

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

.process-steps {
    display: flex;
    gap: 30px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    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 h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-container-centered h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
}

.form-container-centered > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    text-align: center;
}

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

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

.contact-info-block h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 32px;
    font-weight: 700;
}

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

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

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

.contact-map-placeholder {
    flex: 1;
    background-color: #e2e8f0;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.contact-cta-section, .directions-section, .faq-contact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-cta-section h2, .directions-section h2, .faq-contact-section h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.direction-card {
    flex: 1;
    background-color: #f8fafc;
    padding: 28px;
    border-radius: 8px;
}

.direction-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.direction-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
}

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

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

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

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-container {
    background-color: #f8fafc;
    padding: 60px 40px;
    border-radius: 12px;
    border-top: 6px solid #059669;
}

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

.thanks-container h1 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.thanks-details h2 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-details p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.next-steps {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.next-steps h2 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.contact-info-thanks {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: #eff6ff;
    border-radius: 8px;
    text-align: center;
}

.contact-info-thanks h2 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.thanks-office-info {
    margin-top: 20px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-container h1 {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
}

.legal-container h2 {
    font-size: 28px;
    color: #1e293b;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: #334155;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 28px;
}

.legal-container ul li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .hero-split, .split-layout, .service-split, .form-container-split, .contact-main-section, .service-detail-header {
        flex-direction: column;
    }

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

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

    .testimonials-grid, .team-grid, .values-grid, .process-steps, .directions-grid {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 36px;
    }

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