
EventLab Website Development  Fourth Year – University coursework


/* ABOUT PAGE */

.about-section {
    padding: 80px 60px;
}

/* TEXT + IMAGE BLOCKS */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
}

.about-image {
    background-color: #e0e0e0;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
}

/* BUTTONS */
.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.about-buttons button {
    padding: 14px 40px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}