:root {
  --primary: #2B6CB0;
  --primary-dark: #265E9A;
  --text-dark: #222222;
  --text-gray: #4A5568;
  --bg-light: #F7F7F7;
  --bg-white: #ffffff;
  --font-body: 'Quicksand', sans-serif;
  --font-heading: 'Questrial', sans-serif;
  --content-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-gray);
  background-color: var(--bg-light);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

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

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

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

/* Hero Section */
.hero {
  position: relative;
  background-image: linear-gradient(90deg, rgba(49, 130, 206, 0.8) 12%, rgba(43, 108, 176, 0.8) 100%), url('assets/images/Header-2.jpeg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 200px;
  color: white;
}

.hero h1 {
  color: white;
  font-size: 48px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: #1A202C;
  color: white;
  transform: translateY(-2px);
}

.btn-icon {
  margin-left: 10px;
}

/* Dividers */
.divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  transform: rotate(180deg);
}

/* Definition Section */
.definition {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.definition h2 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.definition p {
  color: var(--primary);
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.benefits h2 {
  font-size: 40px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  margin-top: 30px; /* Space for overhanging icon */
}

.feature-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -75px auto 20px;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(43, 108, 176, 0.3);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color:var(--text-dark);
}

/* Process Section */
.process {
  background-color: var(--bg-white);
  padding: 100px 0;
}

.process h2.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 80px;
}

.process-row {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  gap: 60px;
}

.process-row:last-child {
  margin-bottom: 0;
}

.process-row.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .process-row, .process-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

.process-image {
  flex: 1;
}

.process-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.process-content {
  flex: 1;
}

.process-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.process-content p {
  font-size: 20px;
}

/* About Section */
.about {
  background-color: var(--primary);
  color: white;
  padding: 150px 0;
  text-align: center;
}

.about h2 {
  color: white;
  margin-bottom: 20px;
}

.about p {
  color: #EDF2F7;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.about-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
}

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

.about-info h4 {
  color: white;
  font-size: 22px;
  margin-bottom: 0;
}

.about-info span {
  font-size: 15px;
  opacity: 0.9;
}

/* CTA Footer */
.cta {
  background-color: #2D3748;
  padding: 80px 0;
  color: white;
}

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

@media (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

.cta h2 {
  color: white;
  font-size: 34px;
  max-width: 600px;
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #1A202C;
  color: #A0AEC0;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: #CBD5E0;
}

.footer-bottom a:hover {
  color: white;
}
