/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4F46E5;
    --secondary-color: #7C3AED;
    --accent-color: #06B6D4;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --background: #FFFFFF;
    --background-secondary: #F9FAFB;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Layout */
.container {
    max-width: 1000px;
    width: 100%;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Main Content */
.main {
    padding: 3rem 2rem;
}

.announcement {
    text-align: center;
    margin-bottom: 3rem;
}

.announcement h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.announcement p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Services */
.services {
    margin-bottom: 3rem;
}

.services h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.service-icon {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li:hover {
    color: var(--primary-color);
}

/* Call to Action */
.cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.velden-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-link {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    background: var(--gradient);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.cta-link:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .container {
        border-radius: 15px;
    }
    
    .header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .main {
        padding: 2rem 1.5rem;
    }
    
    .announcement h2 {
        font-size: 1.5rem;
    }
    
    .announcement p {
        font-size: 1rem;
    }
    
    .services h3 {
        font-size: 1.2rem;
    }
    
    .cta {
        padding: 1.5rem;
    }
    
    .cta-link {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .velden-logo {
        max-width: 100px;
    }
    
    .service-icon {
        font-size: 1rem;
        width: 20px;
        margin-right: 0.6rem;
    }
    
    .services-list li {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 0.8s ease-out;
}

.services-list li {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.services-list li:nth-child(1) { animation-delay: 0.1s; }
.services-list li:nth-child(2) { animation-delay: 0.2s; }
.services-list li:nth-child(3) { animation-delay: 0.3s; }
.services-list li:nth-child(4) { animation-delay: 0.4s; }
.services-list li:nth-child(5) { animation-delay: 0.5s; }