* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #2d3436;
  background-color: #fefefe;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.25;
}

h2 { font-size: calc(1.425rem + 1.1vw); }
h3 { font-size: calc(1.375rem + .8vw); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.375rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #1a5f7a;
  transition: all .25s ease;
}

a:hover {
  color: #ff6b35;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  --primary: #1a5f7a;
  --primary-dark: #134b61;
  --secondary: #fef3e2;
  --accent: #ff6b35;
  --accent-light: #ff8c5a;
  --text: #2d3436;
  --text-light: #636e72;
  --bg: #fefefe;
  --bg-alt: #f8f6f3;
  --gradient: linear-gradient(135deg, #1a5f7a 0%, #2d8cb8 50%, #ff6b35 100%);
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.row > * {
  padding: 0 1rem;
  width: 100%;
}

.col-6 { width: 50%; }
.col-12 { width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--accent);
}

.navbar-nav {
  display: none;
  gap: 0.5rem;
}

.navbar-nav a {
  padding: 0.5rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
}

.navbar-nav a:hover {
  color: var(--accent);
  background: var(--secondary);
}

.navbar-btn {
  display: none;
}

@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
  }
  .navbar-btn {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.92) 0%, rgba(26, 95, 122, 0.85) 50%, rgba(255, 107, 53, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-decor {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 300px;
  height: 300px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  color: var(--text);
  margin-bottom: 1rem;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.85);
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all .3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 95, 122, 0.12);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.card h4 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.card p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 1rem;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-box:last-child {
  margin-bottom: 0;
}

.feature-num {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.feature-box h5 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-box p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

.img-rounded {
  border-radius: 20px;
  overflow: hidden;
}

.img-rounded img {
  width: 100%;
  height: auto;
  display: block;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding-left: 2rem;
  margin: 2rem 0;
}

.quote-block blockquote {
  font-size: 1.375rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.quote-block cite {
  color: var(--text-light);
  font-style: normal;
  font-weight: 600;
}

.cta-box {
  background: var(--gradient);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-box p {
  opacity: 0.95;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #fff;
  transition: all .3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h5 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-light);
}

.footer {
  background: #1a1f23;
  color: #fff;
  padding: 4rem 0 0;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--accent);
}

.footer p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.footer h5 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1f23;
  color: #fff;
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--accent);
}

.page-header {
  background: var(--primary);
  padding: 10rem 0 4rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.article-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all .3s ease;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 95, 122, 0.15);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card-body {
  padding: 1.75rem;
}

.article-card h4 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.article-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.partner-benefit {
  text-align: center;
  padding: 2rem;
}

.partner-benefit i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.partner-benefit h4 {
  margin-bottom: 0.75rem;
}

.partner-benefit p {
  color: var(--text-light);
  margin: 0;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
}

.check-list i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .section {
    padding: 3.5rem 0;
  }
  .row > * {
    margin-bottom: 1.5rem;
  }
  .row > *:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
}
