@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    }

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--gray-300);
}

    .btn-secondary:hover {
        border-color: var(--primary);
        background: var(--gray-100);
    }

/* Section basics */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--gray-500);
        max-width: 600px;
        margin: 0 auto;
    }

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}


h1, h2, h3, h4, h5, h6 {
    outline: none;
    border: none;
}

*:focus {
    outline: none;
}