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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.value-proposition {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.vp-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.vp-content {
    flex: 1;
    padding: 4rem;
}

.vp-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vp-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-right: 1.5rem;
}

.link-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: right 0.3s;
}

.link-arrow:hover::after {
    right: -0.3rem;
}

.process-overview {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #f9f9f9;
}

.process-text {
    flex: 1;
    padding: 4rem;
}

.process-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step p {
    color: #555;
    font-size: 1.05rem;
}

.process-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-selection {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-image {
    background-color: #e8e8e8;
    height: 200px;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    margin: 0 1.5rem 1rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 1rem 1.5rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #f5f5f5;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.service-card.selected {
    border-color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-card.selected .btn-select {
    background-color: #2c2c2c;
    color: #ffffff;
}

.form-section {
    background-color: #fafafa;
    padding: 4rem 2rem;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.selected-service-display {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2c2c2c;
    border-radius: 4px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.5rem;
}

.selected-service-display span {
    font-size: 1.1rem;
}

#selected-service-price {
    display: block;
    font-weight: 600;
    margin-top: 0.3rem;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

.disclaimer {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

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

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

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 2rem auto;
}

.about-hero-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

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

.philosophy-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.philosophy-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.philosophy-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

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

.approach-text {
    flex: 1;
    padding: 3rem;
    background-color: #fafafa;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.approach-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1.05rem;
    color: #555;
}

.approach-list li:last-child {
    border-bottom: none;
}

.team-overview {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.team-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #fafafa;
}

.values-text {
    flex: 1;
    padding: 3rem;
}

.values-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    color: #555;
    font-size: 1.05rem;
}

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

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

.cta-section-centered {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #fafafa;
    border-radius: 8px;
}

.cta-section-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section-centered p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.services-hero {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    border-top: 1px solid #e5e5e5;
    padding-top: 4rem;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.service-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.additional-services h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.add-ons-grid {
    display: flex;
    gap: 2rem;
}

.add-on-card {
    flex: 1;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 8px;
}

.add-on-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.add-on-card p {
    color: #555;
    line-height: 1.7;
}

.service-process {
    max-width: 1200px;
    margin: 5rem auto 3rem;
    padding: 0 2rem;
}

.process-header h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

.contact-hero {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #555;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.contact-detail p {
    color: #555;
    line-height: 1.8;
}

.contact-email {
    font-weight: 500;
    color: #2c2c2c;
}

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

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

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

.cta-box {
    background-color: #fafafa;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #fafafa;
    padding: 1.5rem;
    border-left: 4px solid #2c2c2c;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.thanks-details p {
    margin-bottom: 0.5rem;
}

.thanks-details strong {
    color: #2c2c2c;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.link-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
}

.link-secondary:hover {
    text-decoration: underline;
}

.thanks-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

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

@media (max-width: 900px) {
    .hero-split,
    .value-proposition,
    .process-overview,
    .approach-split,
    .values-split,
    .service-detail-split,
    .contact-split,
    .thanks-container,
    .about-hero-split,
    .form-container-split {
        flex-direction: column;
    }

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

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

    .add-ons-grid {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }
}