/* Web/static/styles/about.css */

.about-hero {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #fafafa;
}

.about-hero h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: 0.005em;
}

.about-hero .tagline {
    font-size: 1.4em;
    color: #6e6e73;
    max-width: 700px;
    margin: 0 auto 20px;
}

.about-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-section {
    margin-bottom: 60px; /* Space between sections */
    text-align: left; /* Align text to the left */
}

.about-section h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-section p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1em; /* Add some space between paragraphs */
}
.about-section ul {
    list-style: disc; /* Use standard bullet points */
    margin-left: 20px; /* Indent the list */
    padding-left: 0;
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.about-section li {
    margin-bottom: 0.5em; /* Space between list items */
}
.about-section a {
    color: #007aff; /* Apple blue link color */
    text-decoration: none;
}
.about-section a:hover {
      text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-hero {
        padding: 60px 20px 30px;
    }

    .about-hero h1 {
        font-size: 2.5em;
    }

    .about-hero .tagline {
        font-size: 1.2em;
    }

    .about-content {
        padding: 20px;
    }

    .about-section {
        margin-bottom: 40px;
    }
      /* Make menu items stack vertically on smaller screens */
      .ac-ln-menu-items {
        flex-direction: column;
        align-items: flex-start; /* Align items to the start */
    }
      .ac-ln-menu-item {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 10px; /* Add bottom margin for spacing */
    }
    /* Adjust padding and alignment for actions */
    .ac-ln-content {
        flex-direction: column; /* Stack title and menu vertically */
        align-items: flex-start; /* Align items to the start */
    }
    .ac-ln-actions {
        margin-left: 0; /* Remove left margin */
        margin-top: 10px; /* Add top margin for spacing */
    }
}