* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container img {
    width: 800px;
    max-width: 90vw;
    height: auto;
}

.message {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-top: 1rem;
}

.footer {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #ddd;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.university-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.university-logos img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Privacy Policy Styles */
body:has(.privacy-content) {
    display: block;
    background-color: #fff;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #fff;
    line-height: 1.7;
    color: #333;
}

.privacy-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #3498db;
}

.privacy-content h2 {
    font-size: 1.5rem;
    color: #34495e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.privacy-content h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    text-align: left;
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content strong {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }
}
