/* MegapolisGroup Brand Variables */
:root {
    /* Brand Colors */
    --turquoise-deep: #479092;
    --turquoise-mid: #539B9B;
    --light-beige: #DFD8CE;
    --white: #FFFFFF;
    --coral: #CE4A37;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    
    /* Fonts */
    --font-main: 'Montserrat', sans-serif;
    --font-weight-extralight: 300;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-main);
    font-weight: var(--font-weight-light);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-extralight);
}

a {
    color: var(--turquoise-deep);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--turquoise-mid);
}

img {
    max-width: 100%;
    height: auto;
}

/* Remove list styles */
.list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

ul.list-unstyled li {
    list-style: none;
}

/* Container */
.container,
.container-fluid,
.container-custom {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1600px) {
    .container,
    .container-fluid,
    .container-custom {
        max-width: 1600px;
    }
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--turquoise-deep);
    color: var(--white) !important;
    font-weight: var(--font-weight-medium);
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--turquoise-mid);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-coral {
    background-color: var(--coral);
    color: var(--white);
    border: none;
    transition: all 0.3s ease;
}

.btn-coral:hover {
    background-color: #b8402f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 75, 60, 0.3);
}

.btn-lg {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
}

/* Utilities */
.text-turquoise { color: var(--turquoise-deep); }
.text-coral { color: var(--coral); }
.bg-beige { background-color: var(--light-beige); }
.bg-turquoise { background-color: var(--turquoise-deep); }

/* Section Spacing */
section {
    padding: var(--spacing-xxl) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-xl) 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}
