.consultations-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
}

.content-container {
    display: flex;
    gap: 2rem;
    align-items: start;
}

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

.about-section {
    flex: 2;
}

.service-card {
    text-align: center;
    padding: 2rem 1rem;
}

.service-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.book-session-btn {
    border: 2px solid #333;
    background: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-session-btn:hover {
    background: #333;
    color: white;
}

.about-section {
    padding: 2rem;
}

.about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-section p {
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
}
