/* Base Styles , Imports & Reset */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0c0f;
    --bg-secondary: #12141a;
    --bg-tertiary: #1a1d25;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent-primary: #4f46e5;
    --accent-secondary: #3730a3;
    --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    --danger: #ef4444;
    --success: #10b981;
    --border-color: #2a2d35;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

body{
    margin: 0;
    padding: 0;
}

.title-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Urbanist',sans-serif;
    background: var(--accent-gradient);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    clip-path: ellipse(78% 100% at top);
    height: 40px;
}

.title{
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 10px;
}

.title-info{
    font-weight: 400;
    font-size: 15px;
    margin-top: 19px;
}

.policy-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Urbanist',sans-serif;
    margin-bottom: 35px;
    margin-top: 19px;
}

.policy-content-header{
    width: 73%;
}

.policy-content h3{
    color : var(--accent-secondary);
    font-size: 27px;
}

.policy-content p {
    margin-top: 0;
    color:#373573;
}

.policy-content ul{
    margin-top: 3px;
    padding-left: 18px;
    color:#373573;
}

/* Footer - Improved alignment */
.main-footer {
    margin-top: auto;
    padding: 2rem 0;

}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--text-primary);
    background-color: var(--accent-primary);
    transform: translateY(-2px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Urbanist';
    font-weight: 400;
}

.copyright strong {
    color: var(--text-primary);
}