* {
    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: #2D3748;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFDAB9 50%, #FFE4C4 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #6C63FF, #5A52D5);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon {
    font-size: 48px;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

.subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 10px;
}

main {
    padding: 40px;
}

.content {
    padding: 40px;
}

h2 {
    color: #6C63FF;
    font-size: 28px;
    margin: 30px 0 15px 0;
    font-weight: bold;
}

h3 {
    color: #FF6B9D;
    font-size: 22px;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

p, li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #4A5568;
}

ul, ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #2D3748;
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 3px solid;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-purple {
    border-color: #6C63FF;
}

.card-pink {
    border-color: #FF6B9D;
}

.card-yellow {
    border-color: #FFC837;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.3);
}

.card-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 22px;
    margin: 15px 0 10px 0;
}

.card p {
    font-size: 15px;
    color: #718096;
    margin: 0;
}

.info-box {
    background: linear-gradient(135deg, #F5F7FF, #E8ECFF);
    border-left: 5px solid #6C63FF;
    padding: 20px;
    margin: 25px 0;
    border-radius: 12px;
}

.warning-box {
    background: #FFF5E6;
    border-left: 5px solid #FFC837;
    padding: 20px;
    margin: 25px 0;
    border-radius: 12px;
}

.email-link {
    color: #6C63FF;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #6C63FF;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #5A52D5;
    border-bottom-color: #5A52D5;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #2D3748;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #6C63FF;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.btn {
    background: linear-gradient(135deg, #6C63FF, #5A52D5);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: block;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.4);
}

.success-message {
    background: linear-gradient(135deg, #48BB78, #38A169);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

footer {
    background: #F7FAFC;
    padding: 30px 40px;
    text-align: center;
    color: #718096;
    font-size: 14px;
    border-top: 1px solid #E2E8F0;
}

footer p {
    margin: 5px 0;
    color: #718096;
}

.back-link {
    display: inline-block;
    margin: 30px 0 20px 0;
    color: #6C63FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #5A52D5;
}

.section {
    margin-bottom: 35px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

th {
    background: #F7FAFC;
    color: #6C63FF;
    font-weight: 600;
}

@media (max-width: 768px) {
    .container {
        border-radius: 0;
    }
    
    header {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    main, .content {
        padding: 25px 20px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
}

