/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

:root {
  --primary: #2B5F8A;
  --primary-dark: #1a3f5e;
  --accent: #7CB342;
  --accent-hover: #689f36;
  --bg-primary: #F9F9F9;
  --bg-secondary: #E0E0E0;
  --bg-card: #fff;
  --text-primary: #2B5F8A;
  --text-secondary: #555;
  --border-color: #d0d0d0;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-light: 0 2px 10px rgba(43, 95, 138, 0.08);
  --shadow-medium: 0 4px 20px rgba(43, 95, 138, 0.12);
  --shadow-heavy: 0 8px 30px rgba(43, 95, 138, 0.15);
  --border-radius: 8px;
  --border-radius-large: 12px;
  --transition: all 0.3s ease;
  --z-cookie: 9998;
  --z-header: 9999;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.5rem 0;
}

a {
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border: none;
  outline: none;
}

button {
  overflow: visible;
  cursor: pointer;
  transition: var(--transition);
}

input, textarea, select {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  background: var(--bg-card);
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43, 95, 138, 0.1);
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .container, .container-wide {
    padding: 0 15px;
  }
}