@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&amp;display=swap');

body.dark {
    --color-primary-dark: #032638;
    --color-orange: #ffa300;
    --color-orange-light: #f2b565;
    --color-yellow-solid: rgba(26, 26, 26, 1);
    --color-font: #fff9ED;
    --color-yellow-light: #032638;
}

body.dark a{
    color: var(--color-font);
}

.h1-style {
  font-size: 2em;
}

.h2-style {
  font-size: 1.5em;
}

.h3-style {
  font-size: 1.17em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--color-primary-dark);
    background-color: var(--color-yellow-light);
}

.logo {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 400;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 2rem 80px 2rem;
    position: relative;
    min-height: 60vh;
    color: #fff3dc;
    background: linear-gradient(
    to bottom right,
    color-mix(in srgb, var(--color-primary-dark) 15%, transparent),
    color-mix(in srgb, #071621 100%, transparent)
    );
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-section h1{
    font-size: 4rem;
    margin-bottom: 4rem;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-content a{
    text-shadow: none;
    white-space: nowrap;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    z-index: 1;
}

.services {
    display: flex;
    flex-direction: column;
    background-color: #fff3dc;
    text-align: center;
    padding-top: 1rem;
}

.services .practitioners {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.services-container {
    background-color: #fff3dc;
    padding: 2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-card {
    background-color: #fff3dc;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex: 0 0 calc(50% - 2rem);
    flex-direction: row;
    box-shadow: 0 4px 8px rgba(3, 38, 56, 0.4);
    text-align: left;
    color: #032638;
    margin: .5rem auto;
    max-width: 85vw;
    width: 85vw;
}

.services-card img{
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.services-card h3 {
    color: #032638;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-description {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 1rem;
    text-align: left;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(3, 38, 56, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
}

.services-description p{
    text-indent: 2rem;
}

.services-description ul {
    margin: 2rem;
    text-indent: 0;
    margin-bottom: 1.5rem;
}

.cta-section {
    background-color: var(--color-primary-dark);
    color: var(--color-yellow-solid);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background-color: var(--color-orange);
    color: var(--color-primary-dark);
}

.cta-section .cta-button:hover {
    background-color: var(--color-orange-light);
}
.expandable-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expandable-item {
    border-bottom: 1px solid rgba(3, 38, 56, 0.2);
}

.expandable-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    font-weight: 600;
    text-indent: 0;
    transition: color 0.3s ease;
}

.expandable-header:hover {
    color: var(--color-orange);
}

.expand-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 1.5rem;
    text-align: center;
}

.expandable-item.active .expand-icon {
    transform: rotate(45deg);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.expandable-item.active .expandable-content {
    max-height: 200px;
    padding-bottom: 1rem;
}

.expandable-content p {
    text-indent: 0;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 1024px){
    .hero-description{
        width: 75%;
        margin: 2rem auto;
    }

    .services-container{
        gap: .5rem;
        padding: .5rem;
    }

    .services-description p, .services-description li{
        font-size: .9rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }

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

    .hero-description {
        font-size: 1rem;
        width: 95%;
    }

    .services .practitioners {
        width: 75%;
    }

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

    .services-description{
        /* margin: 0 1rem; */
        height: 300px;
    }

}

@media (max-width: 600px){

    .hero-section {
        padding: 120px 1rem 80px 1rem;
    }

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

    .services .practitioners {
        width: 90%;
    }

    .services-card {
        width: 100%;
        max-width: 100%;
        margin: .5rem auto;
    }

    .services-card img{
        width: 30%;
        height: 100px;
    }

    .services-description {
        margin-right: 0;
    }

    .services-description p{
        text-indent: 1rem;
    }

    .services-description p, .services-description li{
        font-size: 80%;
    }
}