:root {
    /* Primary Colors */
    --primary-color: #2c3e50;
    --accent-color: #f1c40f;
    --accent-color-hover: #d39e00;
    --primary-hover: #34495e;
    
    /* Background Colors */
    --bg-dark: #1a1a1a;
    --bg-light: #ffffff;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --text-golden: #fcd023da;
    --text-dark-color: #171f55;
    
    /* Accent Colors */
    --accent-1: #f4f4f4;
    --accent-2: #e0e0e0;
    
    /* Border Colors */
    --border-color: #444444;
    
    /* Button Colors */
    --btn-primary: var(--primary-color);
    --btn-primary-hover: var(--primary-hover);
    --btn-secondary: #333333;
    --btn-secondary-hover: #444444;

    /* Footer Colors */
    --footer-bg: #2c3e50;
    --footer-text: #ecf0f1;
    --footer-heading: #f1c40f;
    --footer-link: #bdc3c7;
    --footer-link-hover: #f1c40f;
    --footer-social: #ecf0f1;
    --footer-social-hover: #f1c40f;
    --footer-bottom-bg: #34495e;

    /* New Colors for Sections */
    --hero-bg: #f8f9fa;
    --section-bg: #ffffff;
    --section-heading: #2c3e50;
    --section-text: #666666;
    --card-bg: #ffffff;
    --card-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --testimonial-bg: #f8f9fa;
    --payment-icon: #666666;
    --location-card-bg: #ffffff;
    --location-card-hover: #f1c40f;

    /* Header Colors */
    --header-bg: rgba(255, 255, 255, 0.9);
    --header-scrolled-bg: transparent;
    --header-border: rgba(0, 0, 0, 0.1);
    --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --header-radius: 0 0 20px 20px;
    --transition-speed: 0.3s;
} 

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Add this to ensure all main containers respect width */
.container, 
.section, 
.wrapper,
main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

