* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #f9f6ff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(147, 51, 234, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(147, 51, 234, 0.2));
}

.info-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-items svg {
    fill: #9333ea;
    transition: transform 0.3s ease;
}

.info-items svg:hover {
    transform: scale(1.1);
}

.btn-large {
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, #a855f7 0%, #d8b4fe 100%);
}

.top {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.85), rgba(192, 132, 252, 0.85));
    z-index: 1;
}

.top .container {
    position: relative;
    z-index: 2;
}

.top h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    line-height: 1.2;
}

main section {
    padding: 60px 0;
}

.content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.05);
}

h2 {
    color: #7c3aed;
    font-size: 32px;
    margin: 40px 0 20px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #9333ea, transparent);
}

h3 {
    color: #8b5cf6;
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: #4b5563;
    line-height: 1.8;
}

ul, ol {
    margin: 20px 0 20px 30px;
}

ul li, ol li {
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.8;
}

strong {
    color: #7c3aed;
    font-weight: 600;
}

em {
    color: #8b5cf6;
    font-style: italic;
}

.link-weiss-center {
    display: block;
    margin: 40px 0;
    text-align: center;
}

.weiss-image-center {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: transform 0.3s ease;
}

.weiss-image-center:hover {
    transform: scale(1.02);
}

.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table td, table th {
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(147, 51, 234, 0.05);
}

table tr:first-child td {
    background: linear-gradient(135deg, #f3e8ff, #faf5ff);
    font-weight: 600;
    color: #7c3aed;
}

table tr:hover {
    background: rgba(147, 51, 234, 0.02);
}

table p {
    margin: 0;
}

footer {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    margin-top: 80px;
}

.footer-top {
    padding: 60px 0 40px 0;
}

.logo-footer img {
    height: 60px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.logo-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.logo-legal img {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-legal img:hover {
    opacity: 1;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.socials a {
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.socials a:hover {
    background: rgba(147, 51, 234, 0.5);
    transform: translateY(-3px);
}

.socials svg {
    fill: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.pb-0 {
    padding-bottom: 0 !important;
}

@media (max-width: 768px) {
    header .row {
        flex-wrap: wrap;
    }
    
    .top h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .content {
        padding: 20px;
    }
    
    table {
        font-size: 14px;
    }
    
    table td, table th {
        padding: 10px;
    }
    
    .info-items {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .top h1 {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .socials a {
        width: 40px;
        height: 40px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content > * {
    animation: fadeIn 0.6s ease-out forwards;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #9333ea, #c084fc);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}