.find-yourself-container {
    padding: 120px 0.5rem 0;
    min-height: 100vh;
}

.service-section {
    padding: 4rem 0.5rem;
    text-align: center;
    background: transparent;
}

.service-section.light-section {
    background-color: #FFF;
    color: var(--color-bg);
}

.service-section.light-section h2,
.service-section.light-section p,
.service-section.light-section ul,
.service-section.light-section li {
    color: var(--color-bg);
}

.service-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.service-section h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    color: var(--color-text);
    text-align: left;
}

.service-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-section p strong {
    text-align: center;
    display: block;
}

.service-section .what-to-expect {
    text-align: left;
}

.service-section .what-to-expect strong {
    text-align: left;
    display: inline;
}

.service-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 700px;
    text-align: left;
}

.service-section li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text);
    position: relative;
    padding-left: 1.5rem;
}

.service-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-text);
}

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

.book-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    border: 2px solid var(--color-text);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.book-btn + .book-btn {
    margin-left: 2rem;
}

.book-btn:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.discover-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    border: 2px solid var(--color-text);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.discover-btn:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

/* Animation for section visibility */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-section {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.service-section:nth-child(1) { animation-delay: 0.2s; }
.service-section:nth-child(2) { animation-delay: 0.4s; }
.service-section:nth-child(3) { animation-delay: 0.6s; }
.service-section:nth-child(4) { animation-delay: 0.8s; }
.service-section:nth-child(5) { animation-delay: 1s; }
.service-section:nth-child(6) { animation-delay: 1.2s; }

@media (max-width: 768px) {
    .service-section {
        padding: 2rem 0.5rem;
    }

    .service-section h2 {
        font-size: 2rem;
    }

    .service-section p {
        font-size: 1rem;
    }
} 