html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background-color: #1f1f1f;
    color: #f0f0f0;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-wrapper {
    flex: 1; /* this pushes footer to bottom */
}

.about-page {
    padding-top: 120px;
    padding-left: 5%;
    padding-right: 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-left .big-logo {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
}

.about-left h1 {
    font-size: 3rem;
    font-weight: 300;
    margin: 0;
}

.about-right {
    flex: 2;
    max-width: 700px;
}

.about-right .highlight {
    color: #e6e6e6;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-right p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}


.fade-in {
    opacity: 0;
    animation: fadeIn 1.4s ease-in-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}