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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-container,
.schedule-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-container > div {
    width: 100% !important;
    min-height: 600px;
}

footer {
    text-align: center;
    padding-top: 40px;
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .form-container,
    .schedule-container {
        border-radius: 8px;
    }
}