* {
    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: #1f2937;
    background-color: #ffffff;
}

.hidden {
    display: none !important;
}

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

.navbar {
    padding: 1.2rem 2rem;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.4rem 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #f9fafb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
    padding: 0.8rem 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #f9fafb;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #e5e7eb;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

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

.approach-image {
    flex: 1;
    background-color: #f3f4f6;
}

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

.approach-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header.centered p {
    font-size: 1.2rem;
    color: #6b7280;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px 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 10px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e5e7eb;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.5rem;
    color: #111827;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.service-price {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    border-top: 1px solid #e5e7eb;
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.insight-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 4rem 2rem;
    background: #f9fafb;
}

.insight-content {
    flex: 1.2;
}

.insight-content h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

.testimonials-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 2rem;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

.contact-form-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-split {
    display: flex;
    gap: 4rem;
    background: #f9fafb;
    padding: 4rem;
    border-radius: 16px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-info p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-container {
    flex: 1;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    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;
}

.form-group textarea {
    resize: vertical;
}

.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

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

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    color: #2563eb;
    font-weight: 800;
}

.service-detail-image {
    flex: 1;
    background-color: #e5e7eb;
    min-height: 400px;
}

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

.cta-section {
    background: #f9fafb;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.about-story {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.story-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: #e5e7eb;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.philosophy-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: #f9fafb;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 3rem;
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-item p {
    color: #4b5563;
    line-height: 1.7;
}

.experience-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.experience-section h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 2rem;
    font-weight: 700;
}

.experience-content p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.experience-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

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

.exp-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.exp-label {
    font-size: 1.1rem;
    color: #6b7280;
}

.values-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.values-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-image {
    flex: 1;
    background-color: #e5e7eb;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-block h3 {
    font-size: 1.4rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
}

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

.small-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.hours-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.hours-table td {
    padding: 0.75rem 0;
    font-size: 1rem;
}

.hours-table td:first-child {
    color: #374151;
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: #6b7280;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.location-info h3 {
    font-size: 1.4rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-info p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.contact-cta {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: #f9fafb;
    border-radius: 16px;
}

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-container {
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 3rem;
}

.service-confirm {
    font-size: 1.05rem;
    color: #374151;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-list {
    text-align: left;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-content h3 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
    margin-top: 2rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section ul li {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f9fafb;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

@media (max-width: 1024px) {
    .hero-split,
    .approach-split,
    .insight-split,
    .form-split,
    .story-split,
    .values-split,
    .contact-layout,
    .service-detail-split {
        flex-direction: column;
    }

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

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

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

    .experience-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-left h1,
    .hero-content h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-left,
    .approach-content,
    .form-info,
    .form-container {
        padding: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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