* {
    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.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #512BD4 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 10px;
}

.logo img {
    width: 100%;
    height: 100%;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    font-weight: 300;
}

main {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #512BD4;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.highlight-box {
    background: #f8f9ff;
    border-left: 4px solid #512BD4;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    text-align: center;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.feature h3 {
    color: #512BD4;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: #512BD4;
    color: white;
    box-shadow: 0 4px 15px rgba(81, 43, 212, 0.3);
}

.btn-secondary {
    background: white;
    color: #512BD4;
    border: 2px solid #512BD4;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 43, 212, 0.4);
}

footer {
    background: #f8f9ff;
    padding: 30px 40px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.disclaimer h3 {
    color: #856404;
    margin-bottom: 10px;
}

.disclaimer p {
    color: #856404;
    font-size: 0.95em;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    main {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
