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

body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}

.container {
max-width: 700px;
margin: 0 auto;
background: white;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
overflow: hidden;
}

.header {
background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
color: white;
padding: 40px 30px;
text-align: center;
}

.header h1 {
font-size: 28px;
margin-bottom: 10px;
}

.clinic-name {
font-size: 18px;
font-weight: 500;
margin-bottom: 5px;
}

.event-date {
font-size: 16px;
opacity: 0.9;
}

.event-info {
padding: 30px;
background: #f8f9fa;
}

.event-info h2 {
color: #333;
margin-bottom: 20px;
font-size: 22px;
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-bottom: 25px;
}

.info-item {
background: white;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-item strong {
color: #e91e63;
display: block;
margin-bottom: 5px;
}

#slots-left {
color: #4caf50;
font-weight: bold;
font-size: 18px;
}

.benefits {
background: white;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #e91e63;
}

.benefits h3 {
color: #333;
margin-bottom: 15px;
font-size: 18px;
}

.benefits ul {
list-style: none;
padding-left: 0;
}

.benefits li {
padding: 8px 0;
padding-left: 25px;
position: relative;
}

.benefits li:before {
content: “✓”;
position: absolute;
left: 0;
color: #4caf50;
font-weight: bold;
}

#registration-section {
padding: 30px;
}

#registration-section h2 {
color: #333;
margin-bottom: 20px;
font-size: 22px;
}

.form-group {
margin-bottom: 20px;
}

label {
display: block;
margin-bottom: 8px;
color: #333;
font-weight: 500;
}

input[type=“text”],
input[type=“tel”] {
width: 100%;
padding: 12px 15px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 16px;
transition: border-color 0.3s;
}

input[type=“text”]:focus,
input[type=“tel”]:focus {
outline: none;
border-color: #e91e63;
}

.checkbox-group {
background: #fff3f8;
padding: 15px;
border-radius: 8px;
border: 1px solid #ffc1e3;
}

.checkbox-label {
display: flex;
align-items: flex-start;
cursor: pointer;
font-weight: normal;
}

.checkbox-label input[type=“checkbox”] {
margin-right: 10px;
margin-top: 3px;
width: 18px;
height: 18px;
cursor: pointer;
}

.checkbox-label span {
flex: 1;
font-size: 14px;
color: #555;
line-height: 1.5;
}

.btn-submit {
width: 100%;
padding: 15px;
background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
color: white;
border: none;
border-radius: 8px;
font-size: 18px;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-submit:active {
transform: translateY(0);
}

.btn-submit:disabled {
background: #ccc;
cursor: not-allowed;
transform: none;
}

.message {
margin-top: 20px;
padding: 15px;
border-radius: 8px;
display: none;
text-align: center;
font-weight: 500;
}

.message.success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
display: block;
}

.message.error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
display: block;
}

.closed-message {
padding: 50px 30px;
text-align: center;
}

.closed-message h2 {
color: #e91e63;
margin-bottom: 15px;
}

.closed-message p {
color: #666;
font-size: 16px;
line-height: 1.6;
}

footer {
background: #333;
color: white;
text-align: center;
padding: 20px;
font-size: 14px;
}

footer a {
color: #e91e63;
text-decoration: none;
}

@media (max-width: 600px) {
.header h1 {
font-size: 24px;
}

.info-grid {
    grid-template-columns: 1fr;
}

.container {
    border-radius: 0;
}

}