* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #22c55e;
    --secondary-green: #16a34a;
    --accent-orange: #f97316;
    --light-orange: #fed7aa;
    --dark-green: #15803d;
    --background: #ffffff;
    --surface: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

.legal-content {
    padding: 80px 0;
}

.legal-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    margin-bottom: 1rem;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-section ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.thanks-content {
    padding: 80px 0;
    text-align: center;
}

.thanks-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.3rem;
    }

    .thanks-content {
        padding: 60px 0;
    }
}