/* Reset some basic elements */
body, h1, h2 p {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
}

/* General page styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-variant: small-caps;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-align: center;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.cta {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-variant: small-caps;
}

.line {
    width: 50px;
    height: 2px;
    background-color: #000;
    margin: 1.5rem auto;
    animation: draw-line 10s ease-out forwards infinite;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-height: 0;
    overflow: hidden;
    color: #555;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}


.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.dropdown {
    margin-top: 100px;
}

.toggle-description {
    font-size: 1.2rem;
    color: #333;
    margin-left: 10px; /* Space between arrow and text */
}

.description {
    font-size: 1.35vw;
    /* font-size: 1.2rem; */
    line-height: 1.6;
    margin-bottom: 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    text-align: justify; /* Align text to the left */
    padding: 0 1rem;
    margin: 0 auto;
    width: 80%;
    word-wrap: break-word;
}

.description.expanded {
    max-height: 700px;
    padding: 1rem;
}

.description p {
    margin-bottom: 1rem;
}
.arrow {
    color: #555;
    font-size: xx-large;
    margin-right: 10px;
    transition: transform 0.5s ease;
}

.arrow.expanded {
    transform: rotate(180deg);
}

.dots {
    text-align: center;
    font-size: 1.5rem; /* Adjust size of the dots */
    color: #555; /* Adjust color of the dots */
    margin: 1rem 0; /* Adjust spacing around the dots */
    letter-spacing: 0.3rem; /* Adjust spacing between dots */
}

/* Animation for line blinking effect */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes draw-line {
    0% { width: 20; }
    80% { width: 400px; }
    100% { width: 20; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .description {
        font-size: 1rem; /* Slightly smaller font size for mobile */
        padding: 0 0.5rem; /* Less padding on smaller screens */
    }

    .toggle-description {
        font-size: 1rem; /* Adjust the toggle description size as well */
    }
}
