:root {
    --primary: #111111;
    --secondary: #f5f5f5;
    --white: #ffffff;
    --text: #202020;
    --muted: #6f6f6f;
    --border: #e5e5e5;
    --accent: #f15a24;
    --container: 1240px;
    --radius: 14px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section-space {
    padding: 80px 0;
}

.light-section {
    background: #f8f8f8;
}

.section-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent);
}

.section-heading h2,
.section-top h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
}

.section-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--muted);
}

.centered {
    text-align: center;
}

.primary-btn,
.secondary-btn,
.view-all-btn,
.package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    transition: 0.25s ease;
}

.primary-btn {
    color: var(--white);
    background: var(--primary);
}

.primary-btn:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    color: var(--primary);
    background: var(--white);
}

.secondary-btn:hover {
    background: #ededed;
}