/*
 Theme Name:  Flatsome Child
 Template:    flatsome
 Version:     1.0.0
*/

/* =============================== */
/* Root custom variables (optional) */
/* =============================== */
:root {
  --container-max: 1200px;
  --container-pad: 20px;
  --radius: 8px;
  --primary: #00a859;
  --primary-dark: #00824a;
  --accent: #f62121;
}

/* =============================== */
/* Global utility styles (optional) */
/* =============================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 0 var(--container-pad);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto 1.5rem;
  padding: 0 var(--container-pad);
}

/* =============================== */
/* Base typography (fallback only) */
/* =============================== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

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

a {
  color: inherit;
  text-decoration: none;
}