/* Basic styles for the UCL website */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General section styling */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5em;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #4a5568;
    text-align: center;
    margin-bottom: 60px;
}

/* Reveal animations */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-20px);
}

.reveal-left.active {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(20px);
}

.reveal-right.active {
    transform: translateX(0);
}
