/* Typography */
.about-page {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
    padding: 2rem;
}

.about-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-page p {
    margin-bottom: 1.5rem;
}

/* Layout */
.frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}



/* Colors and accents */
.about-page {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Links */
.about-page a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
}

.about-page a:hover {
    color: #0d47a1;
    text-decoration: underline;
}