:root {
    --font-main: 'Trebuchet MS', Helvetica, sans-serif;
    --color-brand: #f97316;
    --color-cta: #22d3ee;
    --text-muted: #888;
    --border: #ddd;
    --text-dark: #1a1a1a;
}

* {
    font-family: var(--font-main);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

img,
video,
iframe,
embed,
object,
svg,
canvas {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
}

.table-responsive,
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

a {
    color: var(--color-brand);
}

p {
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: var(--color-cta);
    color: #111;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
    background: #06b6d4;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.35);
    color: #111;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 26px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        font-size: 16px;
    }
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}