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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.services {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.service-card h2 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.8em;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.emoji {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
}

.access-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e0e0e0;
}

.access-section h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    padding: 15px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #5568d3;
}

.button-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 15px;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 8px;
    margin-top: 10px;
}

.button-secondary:hover {
    background: #f5f5ff;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #999;
}

#message-status {
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
}

#message-status.success {
    background: #4caf50;
    color: white;
    display: block;
}

#message-status.error {
    background: #f44336;
    color: white;
    display: block;
}

footer {
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}

footer p {
    margin: 0;
}
