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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.prep-intro-container {
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.prep-intro-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.prep-intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.prep-intro-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prep-logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 150px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prep-intro-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .prep-logo-image {
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .prep-intro-title {
        font-size: 24px;
    }
    
    .prep-logo-image {
        max-height: 100px;
    }
}