* {
    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.7;
    background: linear-gradient(135deg, #f5f1eb 0%, #f8f5f0 100%);
    color: #333;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

.logo {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 25%, #673ab7 50%, #ff9800 75%, #ff5722 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    letter-spacing: -0.02em;
}

.logo-accent {
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 2rem;
}

.accent-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 2px;
}

.accent-dot:nth-child(1) {
    background: #e91e63;
    transform: rotate(-15deg);
}

.accent-dot:nth-child(2) {
    background: #ff9800;
    transform: rotate(15deg);
}

.accent-dot:nth-child(3) {
    background: #ff5722;
    transform: rotate(-10deg);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 30px 0 20px 0;
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%) 1;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 25px 0 15px 0;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #673ab7 0%, #ff9800 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0 10px 0;
}

p {
    margin-bottom: 15px;
    color: #444;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    color: #444;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-left: 4px solid #e91e63;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.date-info {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.1) 0%, rgba(233, 30, 99, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.contact-info h2 {
    margin-top: 0;
}

a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .content {
        padding: 25px;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}
