@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-style{
    font-size: 5.5rem;
    margin-bottom: 3rem;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-top: 8rem;
}

.hero-description {
    font-size: 1.2rem;
    /* margin-bottom: 1rem; */
    line-height: 1.6;
    width: 70vw;
    margin: 0 auto 1rem auto;
}

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

.hero-image #image1{
    width: 450px;
    height: auto;
    border-radius: 10px 10px 10px 10px;
    z-index:3;
    position: absolute;
}

.hero-image #image2{
    width:150px;
    height: 200px;
    transform: translate(-2rem, 2rem);
    border-radius: 10px 10px 10px 10px;
    z-index: 2;
}

.services {
    background-color: var(--color-orange);
    justify-content: center;
}

.services-container {
    transform: translateY(-3rem);
}

.services-card {
    background-color: #fff3dc;
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    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 h1 {
    color: #032638;
    margin-bottom: 1.5rem;
    text-decoration: underline;
    text-align: center;
}

.services-description {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 2rem 1rem;
    text-align: left;
}

.indent {
    text-indent: 2rem;
}

.services-description ul {
    padding-left: 2rem;
    list-style-position: outside;
}

.cta-section {
    background-color: #fff3dc;
    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-content {
        width: 90vw;
    }

    .hero-content .h1-style {
        margin-top: 2rem;
        font-size: 4rem;
    }
}

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

    .hero-content .h1-style{
        line-height: 1.2;
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-top: 4rem;
    }

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

    .services-container{
        font-size: 90%;
    }
}

@media (max-width: 600px){
    .hero-content {
        width: 100vw;
    }

    .hero-content .h1-style{
        font-size: 2rem;
        margin: 1rem 0;
    }

    .hero-description{
        width: 90vw;
    }

    .services-card {
        flex-direction: column;
        padding: 0;
        width: 90vw;
        max-width: 90vw;
    }

    .services-card h1{
        font-size: 1.2rem;
    }

    .services-description {
        margin: 1rem;
    }

    .indent{
        text-indent: 1rem;
    }
}