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

body {
  font-family: "Source Sans 3";
  color: #1f2937;
}

.hero-container {
  max-width: 100%;
  margin: 0 60px 0 60px;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 2fr 2.5fr;
  gap: 50px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arn-text {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(205, 104, 74, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.static-line {
  width: 450px;
  height: 2.5px;
  background: #243a5e;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
  color: rgba(34, 34, 34, 1);
}

.hero-title .highlight {
  color: rgba(205, 104, 74, 1);
}

.hero-description {
  font-size: 16px;
  color: rgba(74, 85, 101, 1);
  max-width: 550px;
  line-height: 1.4;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.btn-primary {
  background: rgba(36, 58, 94, 1);
  color: #ffffff;
  border: none;
  padding: 14px 60px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-secondary {
  background: #ffffff;
  color: rgba(36, 58, 94, 1);
  border: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.call-icon {
  border: 1px solid rgba(218, 221, 216, 1);
  border-radius: 10px;
  padding: 14px 16px;
}

.hero-right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
  padding-right: 80px;
}

.hero-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 15px;
  padding: 10px;
  border: 2px solid rgba(234, 236, 239, 1);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quote-icon {
  position: absolute;
  top: -12px;
  left: -10px;
  width: 32px;
  height: 32px;
}

.testimonial-image {
  width: 270px;
  height: 150px;
  border-radius: 100px 0 0 100px;
  object-fit: cover;
}

.testimonial-text {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(34, 34, 34, 1);
  line-height: 1.6;
  margin-bottom: 15px;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: auto;
}

.author-subtitle {
  font-size: 13.5px;
  color: rgba(34, 34, 34, 1);
}

.side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.hero-row-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.stats-overlay {
  position: absolute;
  right: -20px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.stat-card {
  background: rgba(205, 104, 74, 1);
  color: #ffffff;
  padding: 25px 15px;
  border-radius: 16px;
  width: 170px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
  font-size: 40px;
  font-weight: 600;
}

.stat-card p {
  font-size: 14px;
  line-height: 1.4;
}

.hero-right {
  position: relative;
}

/* LARGE LAPTOPS (max 1200px) */
@media (max-width: 1200px) {
  .hero-container {
    margin: 0 40px;
    gap: 40px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-description {
    max-width: 100%;
  }

  .testimonial-image {
    width: 230px;
    height: 140px;
  }

  .hero-right {
    padding-right: 40px;
  }
}

/* TABLETS / iPAD PRO (max 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 0 30px;
  }

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

  .hero-title {
    font-size: 46px;
  }

  .hero-buttons {
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .hero-right {
    padding-right: 0;
  }

  .hero-row-top {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-image {
    width: 100%;
    height: 160px;
    border-radius: 15px;
  }

  .stats-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .stat-card {
    width: 150px;
    padding: 20px 10px;
  }
}

/* SMALL TABLETS / LARGE PHONES (max 768px) */
@media (max-width: 768px) {
  .hero-container {
    margin: 0 20px;
    padding: 30px 10px;
  }

  .static-line {
    width: 100%;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary {
    width: 100%;
    padding: 14px 20px;
  }

  .btn-secondary {
    justify-content: center;
  }

  .hero-row-top {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 15px;
  }

  .testimonial-image {
    height: 180px;
  }

  .stats-overlay {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* MOBILE DEVICES (max 480px) */
@media (max-width: 480px) {
  .arn-text {
    margin-top: 20px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 14px;
  }

  .author-name {
    font-size: 14px;
  }

  .author-subtitle {
    font-size: 12px;
  }

  .stat-card {
    width: 100%;
  }

  .stat-card h3 {
    font-size: 32px;
  }

  .stat-card p {
    font-size: 13px;
  }
}

/* ABOUT SECTION */
.about-section {
  max-width: 100%;
  margin: 0 60px 0 60px;
  padding: 40px 20px;
  display: grid;
  gap: 40px;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-label {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(205, 104, 74, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-underline {
  right: 20px;
  width: calc(15% + 10px);
  height: 2.5px;
  background: rgba(36, 58, 94, 1);
  margin-bottom: 20px;
}

.about-title {
  font-size: 35px;
  line-height: 1.25;
  letter-spacing: 1px;
  font-weight: 700;
  color: #1f2937;
}

.about-title span {
  color: rgba(205, 104, 74, 1);
}

.about-description {
  margin-top: 10px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.4;
  max-width: 620px;
}

.about-btn {
  margin-top: 40px;
  background: #1f3b64;
  color: #ffffff;
  border: none;
  padding: 14px 50px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(36, 58, 94, 0.1);
  padding: 24px;
  border-radius: 14px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(34, 34, 34, 1);
}

.feature-card p {
  font-size: 15px;
  color: rgba(34, 34, 34, 1);
  line-height: 1.6;
}

/* LARGE LAPTOPS (max 1200px) */
@media (max-width: 1200px) {
  .about-section {
    margin: 0 40px;
    gap: 35px;
  }

  .about-top {
    gap: 40px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-description {
    max-width: 100%;
  }

  .about-features {
    gap: 20px;
  }
}

/* TABLETS / iPAD PRO (max 1024px) */
@media (max-width: 1024px) {
  .about-section {
    margin: 0 30px;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 380px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-btn {
    margin-top: 30px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SMALL TABLETS / LARGE PHONES (max 768px) */
@media (max-width: 768px) {
  .about-section {
    margin: 0 20px;
    padding: 30px 10px;
  }

  .about-title {
    font-size: 26px;
    letter-spacing: 0.5px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-btn {
    padding: 14px 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    padding: 20px;
  }
}

/* MOBILE DEVICES (max 480px) */
@media (max-width: 480px) {
  .about-label {
    font-size: 14px;
  }

  .about-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .about-description {
    font-size: 14px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .feature-card h4 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 14px;
  }
}

/* SERVICES SECTION */
.services-section {
  padding: 40px 20px;
  background: #ffffff;
  margin: 40px 0;
}

.services-container {
  max-width: 100%;
  margin: 0 60px 0 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #cd684a;
  margin-bottom: 5px;
}

.service-underline {
  display: block;
  width: 140px;
  height: 2.5px;
  background: #243a5e;
  margin: 2px auto 20px auto;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 70px;
}

.section-title span {
  color: #cd684a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 14px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card p {
  margin-top: 25px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.service-card img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* NEST HUB MAX (1280 x 800) */
@media (max-width: 1280px) and (max-height: 800px) {
  .services-container {
    margin: 0 40px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card img {
    height: 280px;
  }
}

/* LARGE LAPTOPS (max 1200px) */
@media (max-width: 1200px) {
  .services-container {
    margin: 0 40px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card img {
    height: 270px;
  }
}

/* NEST HUB (1024 x 600) */
@media (max-width: 1024px) and (max-height: 600px) {
  .services-container {
    margin: 0 30px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-card img {
    height: 240px;
  }
}

/* TABLETS / iPAD (max 1024px) */
@media (max-width: 1024px) {
  .services-container {
    margin: 0 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SMALL TABLETS / LARGE PHONES (max 768px) */
@media (max-width: 768px) {
  .services-container {
    margin: 0 20px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card img {
    height: 260px;
  }

  .service-card p {
    font-size: 15px;
  }
}

/* MOBILE DEVICES (max 480px) */
@media (max-width: 480px) {
  .services-section {
    padding: 30px 10px;
  }

  .section-tag {
    font-size: 12px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 35px;
  }

  .service-underline {
    width: 110px;
  }

  .service-card img {
    height: 220px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* Why Mutual Funds */
.mutual-fund-section {
  background: #243a5e;
  padding: 60px 20px;
  margin: 60px 0;
}

.mf-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
  margin: 0 60px 0 60px;
}

.mf-left {
  margin-top: 10px;
  color: #ffffff;
}

.mf-tag {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.mf-underline {
  display: block;
  margin-top: 5px;
  width: 200px;
  height: 2px;
  background: #eaecef;
}

.mf-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 20px 0;
}

.mf-description {
  font-size: 17px;
  line-height: 1.7;
  max-width: 450px;
}

.mf-btn {
  margin-top: 60px;
  padding: 12px 35px;
  background: #ffffff;
  color: #243a5e;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.mf-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mf-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mf-icon {
  width: 80px;
  height: 80px;
  margin-left: -60px;
  border-radius: 50%;
  background: #ffffff;
  color: #cd684a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mf-icon img {
  width: 50px;
  height: 50px;
}

.mf-card-text h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1717;
}

.mf-card-text p {
  width: 600px;
  font-size: 15px;
  line-height: 1.4;
  color: #4a5565;
  margin-top: 4px;
  padding-right: 70px;
}

.mf-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #eaecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cd684a;
  font-size: 24px;
}

/* NEST HUB MAX (1280 × 800) */
@media (max-width: 1280px) and (max-height: 800px) {
  .mf-container {
    margin: 0 40px;
    gap: 40px;
  }

  .mf-card-text p {
    width: 100%;
  }
}

/* LARGE LAPTOPS (max 1200px) */
@media (max-width: 1200px) {
  .mf-container {
    margin: 0 40px;
    gap: 40px;
  }

  .mf-title {
    font-size: 32px;
  }

  .mf-description {
    max-width: 100%;
  }

  .mf-card-text p {
    width: 100%;
  }
}

/* NEST HUB (1024 × 600) */
@media (max-width: 1024px) and (max-height: 600px) {
  .mf-container {
    margin: 0 30px;
    gap: 35px;
  }

  .mf-container {
    grid-template-columns: 1fr;
  }

  .mf-right {
    margin-top: 20px;
  }

  .mf-card {
    padding-left: 50px;
  }

  .mf-icon {
    margin-left: -40px;
  }
}

/* TABLETS / iPAD (max 1024px) */
@media (max-width: 1024px) {
  .mf-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0 30px;
  }

  .mf-btn {
    margin-top: 40px;
  }

  .mf-card-text p {
    width: 100%;
  }
}

/* SMALL TABLETS / LARGE PHONES (max 768px) */
@media (max-width: 768px) {
  .mutual-fund-section {
    padding: 50px 15px;
  }

  .mf-container {
    margin: 0 20px;
  }

  .mf-title {
    font-size: 28px;
  }

  .mf-description {
    font-size: 16px;
  }

  .mf-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mf-icon {
    margin-left: 0;
  }

  .mf-arrow {
    align-self: flex-end;
    margin-right: 0;
  }
}

/* MOBILE DEVICES (max 480px) */
@media (max-width: 480px) {
  .mf-tag {
    font-size: 13px;
  }

  .mf-underline {
    width: 140px;
  }

  .mf-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .mf-description {
    font-size: 15px;
  }

  .mf-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .mf-card {
    padding: 20px;
  }

  .mf-card-text h4 {
    font-size: 16px;
  }

  .mf-card-text p {
    font-size: 14px;
  }

  .mf-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* Performing Overview */
.fund-performance {
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #cd684a;
  font-weight: 600;
}

.performing-underline {
  display: block;
  width: 240px;
  height: 2.5px;
  background: #243a5e;
  margin: 2px auto 20px auto;
}

h2 {
  font-size: 40px;
  margin: 12px 0;
  color: #222222;
  letter-spacing: 1px;
}

h2 span {
  color: #cd684a;
}

.subtitle {
  max-width: 500px;
  margin: 0 auto 40px;
  color: #4a5565;
  font-size: 16px;
  margin-bottom: 60px;
}

.fund-tabs {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-bottom: 32px;
}

.tab {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #bfc3c8;
  cursor: pointer;
  position: relative;
}

.tab.active {
  color: #243a5e;
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 20%;
  transform: translateX(-15%);
  width: calc(100% + 30px);
  height: 2px;
  background: #243a5e;
  bottom: -8px;
  left: 0;
}

.fund-table {
  margin-top: 20px;
}

.table-head {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.table-head div {
  background: #bfc3c8;
  padding: 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.table-head > div:first-child {
  text-align: left;
}

.table-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  background: #ffffff;
  padding: 18px;
  border-bottom: 20px solid #bfc3c8;
  text-align: center;
  align-items: center;
  place-items: center;
}

.table-row > div:first-child {
  justify-self: start;
  text-align: left;
}

.value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* LARGE SCREENS (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* TABLETS (≤1024px) */
@media (max-width: 1024px) {
  h2 {
    font-size: 30px;
  }

  .fund-tabs {
    gap: 30px;
    flex-wrap: wrap;
  }

  .fund-table {
    overflow-x: auto;
  }

  .table-head,
  .table-row {
    min-width: 900px;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  }

  .table-head div {
    padding: 14px;
    font-size: 13px;
  }

  .table-row {
    padding: 16px;
    gap: 12px;
  }
}

/* MOBILE (≤768px) */
@media (max-width: 768px) {
  .fund-performance {
    padding: 30px 14px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .fund-tabs {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .tab {
    white-space: nowrap;
    font-size: 13px;
  }

  .fund-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-head,
  .table-row {
    min-width: 900px;
  }

  .table-head div {
    font-size: 12px;
    padding: 12px;
  }

  .table-row {
    padding: 14px;
  }

  .value {
    font-size: 12px;
  }

  .arrow-icon {
    width: 16px;
    height: 16px;
  }
}

/* SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
  h2 {
    font-size: 22px;
  }

  .tab {
    font-size: 12px;
  }

  .table-head,
  .table-row {
    min-width: 900px;
  }

  .table-head div {
    font-size: 11px;
    padding: 10px;
  }

  .table-row {
    padding: 12px;
  }

  .value {
    font-size: 11px;
  }
}

/* Get a Consultation */
.consultation-section {
  padding: 60px 20px;
}

.consultation-container {
  max-width: 1200px;
  margin: auto;
  background: #dadee4;
  border-radius: 12px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #222222;
  display: inline-block;
  margin-bottom: 5px;
}

.consultation-underline {
  display: block;
  right: 20px;
  width: calc(40% + 10px);
  height: 2.5px;
  background: #243a5e;
  margin-bottom: 20px;
}

.consultation-left h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222222;
}

.consultation-left h2 span {
  color: #cd684a;
}

.consultation-left p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5565;
  max-width: 420px;
}

.contact-info {
  list-style: none;
  margin-top: 30px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #4a5565;
}

#text {
  color: #4a5565;
}

.contact-info .icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.consultation-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #222222;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #f3f3f3;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  min-height: 100px;
  resize: none;
}

.full-width {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: #1f3b73;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* LAPTOPS (1024px – 1199px) */
@media (max-width: 1199px) {
  .consultation-container {
    gap: 40px;
    padding: 40px;
  }

  .consultation-left h2 {
    font-size: 32px;
  }
}

/* TABLETS (768px – 1023px) */
@media (max-width: 1023px) {
  .consultation-container {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 40px;
  }

  .consultation-left p {
    max-width: 100%;
  }

  .consultation-form {
    padding: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    margin-top: 10px;
  }
}

/* MOBILE LARGE (481px – 767px) */
@media (max-width: 767px) {
  .consultation-section {
    padding: 40px 14px;
  }

  .consultation-container {
    padding: 28px;
    border-radius: 10px;
  }

  .consultation-left h2 {
    font-size: 26px;
  }

  .consultation-left p {
    font-size: 14px;
  }

  .contact-info li {
    font-size: 13px;
  }

  .contact-info .icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .consultation-form {
    padding: 22px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
  }
}

/* MOBILE SMALL (≤480px) */
@media (max-width: 480px) {
  .consultation-section {
    padding: 32px 12px;
  }

  .consultation-container {
    padding: 22px;
  }

  .section-tag {
    font-size: 11px;
  }

  .consultation-left h2 {
    font-size: 22px;
  }

  .consultation-left p {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 13px;
    padding: 11px 12px;
  }

  .submit-btn {
    font-size: 13px;
  }
}

/* Frequently Asked Questions */
.faq-section {
  background: #243a5e;
  padding: 80px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.faq-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 6px;
  display: inline-block;
}

.faq-underline {
  display: block;
  right: 20px;
  width: calc(50% + 10px);
  height: 2.5px;
  background: #8fb8a8;
  margin-bottom: 20px;
}

.faq-left h2 {
  font-size: 38px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
}

.faq-left p {
  font-size: 15px;
  color: #ffffff;
  max-width: 360px;
  margin-bottom: 30px;
}

.faq-btn {
  display: inline-block;
  background: #ffffff;
  color: #243a5e;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 22px;
}

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

.faq-question span {
  font-size: 15px;
  font-weight: 500;
  color: #1d1717;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #eaecef;
  font-size: 18px;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left {
    margin-bottom: 40px;
  }
}

/* Plan with Confidence */
.cta-section {
  padding: 80px 20px;
}

.cta-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: 20px;
  align-items: stretch;
}

.cta-image-box {
  border-radius: 14px;
  overflow: hidden;
}

.cta-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content-box {
  background: #eaecef;
  border-radius: 14px;
  padding: 50px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #222222;
  display: inline-block;
  margin-bottom: 5px;
  position: relative;
}

.cta-underline {
  display: block;
  width: calc(28% + 40px);
  height: 2.5px;
  background: #243a5e;
  margin: 2px auto 20px auto;
}

.cta-content-box h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #222222;
  margin-bottom: 16px;
}

.cta-content-box h2 span {
  color: #cd684a;
}

.cta-content-box p {
  font-size: 15px;
  color: #222222;
  max-width: 520px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.btn.primary {
  background: #243a5e;
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: #243a5e;
  border: 1px solid #dee2e7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-content-box {
    padding: 40px 30px;
  }
}
