/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background-image: url('https://storage.googleapis.com/objects.ucausa.org/index/covor1.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-center-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-center-title h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: 6rem;
    margin: 0;
    line-height: 1.1;
}

.hero-bottom-content {
    position: absolute;
    bottom: 120px;
    left: 100px;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.hero-bottom-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background-color: #9e2c74;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #7a225a;
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-center-title h1 {
        font-size: 2.5rem;
    }

    .hero-bottom-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.mission-left {
    flex: 1;
}

.mission-left h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: 3rem;
    color: #000065;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.mission-right {
    flex: 2;
}

.mission-right p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        gap: 30px;
    }
}