* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Clean Car Wash Theme */
    --primary: #0099cc;
    --primary-light: #33b5e5;
    --primary-dark: #007399;

    /* Secondary Colors - Eco Accents */
    --secondary: #43cea2;
    --secondary-light: #63e6be;
    --secondary-dark: #2a907c;

    /* Accent Colors - Water Details */
    --accent: #00c6fb;
    --accent-light: #90f7ec;
    --accent-dark: #005f73;

    /* Neutral Colors */
    --dark: #222f3e;
    --gray-dark: #576574;
    --gray: #8395a7;
    --gray-light: #f1f2f6;
    --light: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);

    /* Typography */
    --font-primary: 'Exo2', sans-serif;
    --font-secondary: 'Comfortaa', cursive;
    --font-size-small: 14px;
    --font-size-base: 16px;
    --font-size-large: 18px;
    --font-size-heading: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 153, 204, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 153, 204, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 153, 204, 0.16);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Spacing */
    --spacing-small: 8px;
    --spacing-base: 16px;
    --spacing-large: 24px;
    --spacing-xlarge: 48px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-base);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-family: var(--font-secondary);
    margin-bottom: var(--spacing-base);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-dark);
}

@media (max-width: 1024px) {
    :root {
        --font-size-heading: 28px;
    }

    .container {
        padding: 0 var(--spacing-large);
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-heading: 24px;
        --font-size-large: 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-heading: 20px;
        --font-size-base: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

@font-face {
    font-family: 'Exo2';
    src: url('../fonts/Exo2-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}