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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-xl-3, .col-xl-2, .col-xl-5, .col-xl-7, .col-xl-12 {
  padding: 0 15px;
}

.col-xl-3 { width: 25%; }
.col-xl-2 { width: 16.666%; }
.col-xl-5 { width: 41.666%; }
.col-xl-7 { width: 58.333%; }
.col-xl-8 { width: 66.666%; }
.col-xl-12 { width: 100%; }

.col-lg-3, .col-lg-2, .col-lg-5, .col-lg-4 {
  padding: 0 15px;
}

.col-lg-3 { width: 25%; }
.col-lg-2 { width: 16.666%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.666%; }

.col-md-6, .col-md-8 {
  padding: 0 15px;
}

.col-md-6 { width: 50%; }
.col-md-8 { width: 66.666%; }

@media (max-width: 991px) {
  .col-lg-3, .col-lg-2, .col-lg-4, .col-lg-5 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .col-md-6, .col-md-8 {
    width: 100%;
  }
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
  }
}

.site-navbar .toggle-button {
  position: absolute;
  right: 0px;
}

@media (min-width: 992px) {
  .site-navbar .toggle-button {
    display: none;
  }
}

.site-navbar .site-logo {
  margin: 0;
  padding: 0;
  font-size: 1.7rem;
}

.site-navbar .site-logo a {
  text-decoration: none;
}

.site-navbar .site-logo .logo-img {
  height: 35px;
  width: auto;
}

@media (max-width: 991.98px) {
  .site-navbar .site-logo {
    float: left;
    position: relative;
  }
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid white !important;
}

.site-navbar .site-navigation .site-menu {
  margin: 0;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.site-navbar .site-navigation .site-menu .active {
  color: #29339B !important;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li > a {
  margin-left: 15px;
  margin-right: 15px;
  padding: 15px 0px;
  color: #000 !important;
  display: inline-block;
  text-decoration: none !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #29339B !important;
}

.site-navbar .site-navigation .site-menu > li.active > a {
  color: #29339B !important;
}

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

.position-relative {
  position: relative;
}

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

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

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

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.d-none {
  display: none;
}

.d-lg-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

@media (max-width: 991px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: none;
  }
}

.slider_bg_1 {
  background-image: url('../images/bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.slider_bg_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slider_bg_1 .container {
  position: relative;
  z-index: 2;
}

.slider_area {
  margin-top: 80px;
}

.slider_area .single_slider {
  height: 650px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 767px) {
  .slider_area {
    margin-top: 70px;
  }
  
  .slider_area .single_slider {
    height: 500px;
  }
}

.slider_area .single_slider .slider_text h3 {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 20px;
}

.slider_area .single_slider .slider_text h3 span {
  font-weight: 700;
}

@media (max-width: 767px) {
  .slider_area .single_slider .slider_text h3 {
    font-size: 28px;
    letter-spacing: 1px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider_area .single_slider .slider_text h3 {
    font-size: 32px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .slider_area .single_slider .slider_text h3 {
    font-size: 38px;
    letter-spacing: 2px;
  }
}

.slider_area .single_slider .slider_text p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
  margin-top: 10px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .slider_area .single_slider .slider_text p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .slider_area .single_slider .slider_text p {
    font-size: 16px;
  }
}

.boxed-btn3 {
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
  color: #fff;
  display: inline-block;
  padding: 18px 44px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  color: #fff !important;
  text-transform: capitalize;
  transition: 0.5s;
  cursor: pointer;
  text-decoration: none;
}

.boxed-btn3:hover {
  background: #fff;
  color: #009DFF !important;
  border: 1px solid #009DFF;
}

.main-content-wrapper {
  padding: 80px 0;
  background: #fff;
}

.top-articles-header {
  text-align: center;
  margin-bottom: 60px;
}

.top-articles-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.top-articles-header p {
  font-size: 18px;
  color: #6c757d;
}

.article-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .article-grid-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.single-post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-thumb {
  height: 220px;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-post-card:hover .post-thumb img {
  transform: scale(1.05);
}

.post-details {
  padding: 25px;
}

.post-info-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.post-info-bar .topic-tag {
  background: #29339B;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.post-info-bar .publish-date {
  color: #6c757d;
  font-size: 14px;
}

.post-details h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.post-details h3 a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-details h3 a:hover {
  color: #29339B;
}

.post-details p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.continue-reading {
  color: #29339B;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.continue-reading:hover {
  color: #74A4BC;
}

.more-posts-link {
  text-align: center;
  margin-top: 40px;
}

.show-all-posts {
  background: transparent;
  color: #29339B;
  border: 2px solid #29339B;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.show-all-posts:hover {
  background: #29339B;
  color: #fff;
}

.footer {
  background-repeat: no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer .footer_top {
  padding-top: 145px;
  padding-bottom: 129px;
  background: #1F1F1F;
}

@media (max-width: 767px) {
  .footer .footer_top {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer .footer_top .footer_widget {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer .footer_top .footer_widget {
    margin-bottom: 30px;
  }
}

.footer .footer_top .footer_widget .footer_title {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .footer .footer_top .footer_widget .footer_title {
    margin-bottom: 20px;
  }
}

.footer .footer_top .footer_widget .footer_logo {
  margin-bottom: 40px;
}

.footer .footer_top .footer_widget .footer-logo-img {
  height: 35px;
  width: auto;
}

@media (max-width: 767px) {
  .footer .footer_top .footer_widget .footer_logo {
    margin-bottom: 20px;
  }
}

.footer .footer_top .footer_widget p {
  color: #C7C7C7;
}

.footer .footer_top .footer_widget p.footer_text {
  font-size: 16px;
  color: #B2B2B2;
  margin-bottom: 23px;
  font-weight: 400;
  line-height: 28px;
}

.footer .footer_top .footer_widget .company-info p {
  font-size: 14px;
  color: #BABABA;
  margin-bottom: 10px;
}

.footer .footer_top .footer_widget .contact-info p {
  font-size: 16px;
  color: #BABABA;
  margin-bottom: 10px;
}

.footer .footer_top .footer_widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer_top .footer_widget ul li a {
  font-size: 16px;
  color: #BABABA;
  line-height: 42px;
  text-decoration: none;
}

.footer .footer_top .footer_widget ul li a:hover {
  color: #5DB2FF;
}

.footer .copy-right_text {
  padding-bottom: 30px;
  background: #000000;
}

.footer .copy-right_text .footer_border {
  padding-bottom: 30px;
}

.footer .copy-right_text .copy_right {
  font-size: 16px;
  color: #919191;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer .copy-right_text .copy_right {
    font-size: 14px;
  }
}

.footer .copy-right_text .copy_right a {
  color: #5DB2FF;
}



/* newsletter cta section */
.newsletter-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #F1FEC6 0%, #74A4BC 100%);
  margin: 80px 0;
}

.newsletter-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.newsletter-text-area {
  flex: 1;
}

.newsletter-text-area h2 {
  font-size: 38px;
  color: #1F1F1F;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.newsletter-text-area p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 35px;
}

.newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-mark {
  background: #29339B;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-point span:last-child {
  color: #333;
  font-size: 16px;
}

.newsletter-cta-area {
  flex: 0 0 400px;
  background: rgba(255, 255, 255, 0.9);
  padding: 45px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.newsletter-cta-area h3 {
  font-size: 26px;
  color: #29339B;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.newsletter-btn {
  background: #29339B;
  background: linear-gradient(45deg, #29339B 0%, #74A4BC 100%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  text-transform: lowercase;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 51, 155, 0.3);
}

.privacy-note {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

.privacy-note a {
  color: #29339B;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

/* responsive stuff */
@media (max-width: 991px) {
  .newsletter-content-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .newsletter-cta-area {
    flex: none;
    max-width: 450px;
    width: 100%;
  }
  
  .newsletter-text-area h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .newsletter-cta-section {
    padding: 60px 0;
    margin: 60px 0;
  }
  
  .newsletter-text-area h2 {
    font-size: 28px;
  }
  
  .newsletter-text-area p {
    font-size: 16px;
  }
  
  .newsletter-cta-area {
    padding: 35px 25px;
  }
  
  .newsletter-btn {
    padding: 16px 35px;
    font-size: 16px;
  }
}


/* about blog section */
.about-blog-section {
  padding: 100px 0;
  background: #fff;
}

.about-blog-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-area {
  flex: 0 0 480px;
}

.about-image-area img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.about-content-area {
  flex: 1;
}

.section-header {
  margin-bottom: 35px;
}

.section-header h2 {
  font-size: 42px;
  color: #1F1F1F;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: lowercase;
}

.header-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #29339B 0%, #74A4BC 100%);
  border-radius: 2px;
}

.about-text {
  margin-bottom: 40px;
}

.about-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  gap: 45px;
  margin-bottom: 45px;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

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

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #29339B;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: lowercase;
}

.about-cta {
  margin-top: 35px;
}

.about-btn {
  background: transparent;
  color: #29339B;
  border: 2px solid #29339B;
  padding: 16px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  text-transform: lowercase;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #29339B;
  color: #fff;
  transform: translateY(-1px);
}

/* responsive design */
@media (max-width: 991px) {
  .about-blog-wrapper {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  
  .about-image-area {
    flex: none;
    max-width: 400px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .about-stats {
    justify-content: center;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .about-blog-section {
    padding: 70px 0;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .about-text p {
    font-size: 16px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .stat-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .about-btn {
    padding: 14px 30px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-image-area {
    max-width: 320px;
  }
  
  .about-stats {
    padding: 20px 0;
  }
  
  .stat-number {
    font-size: 28px;
  }
}


/* newsletter cta section */
.newsletter-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #F1FEC6 0%, #74A4BC 100%);
  margin: 80px 0;
}

.newsletter-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.newsletter-text-area {
  flex: 1;
}

.newsletter-text-area h2 {
  font-size: 38px;
  color: #1F1F1F;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.newsletter-text-area p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 35px;
}

.newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-mark {
  background: #29339B;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-point span:last-child {
  color: #333;
  font-size: 16px;
}

.newsletter-cta-area {
  flex: 0 0 400px;
  background: rgba(255, 255, 255, 0.9);
  padding: 45px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.newsletter-cta-area h3 {
  font-size: 26px;
  color: #29339B;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.newsletter-btn {
  background: #29339B;
  background: linear-gradient(45deg, #29339B 0%, #74A4BC 100%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  text-transform: lowercase;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 51, 155, 0.3);
}

.privacy-note {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

.privacy-note a {
  color: #29339B;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

/* responsive stuff */
@media (max-width: 991px) {
  .newsletter-content-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .newsletter-cta-area {
    flex: none;
    max-width: 450px;
    width: 100%;
  }
  
  .newsletter-text-area h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .newsletter-cta-section {
    padding: 60px 0;
    margin: 60px 0;
  }
  
  .newsletter-text-area h2 {
    font-size: 28px;
  }
  
  .newsletter-text-area p {
    font-size: 16px;
  }
  
  .newsletter-cta-area {
    padding: 35px 25px;
  }
  
  .newsletter-btn {
    padding: 16px 35px;
    font-size: 16px;
  }
}

/* legal pages styles */
.legal-page-content {
  padding: 120px 0 80px 0;
  background: #fff;
  min-height: 70vh;
}

.legal-page-content .container {
  max-width: 800px;
}

.legal-page-content h1 {
  font-size: 42px;
  color: #29339B;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: lowercase;
  border-bottom: 3px solid #74A4BC;
  padding-bottom: 15px;
}

.legal-page-content h2 {
  font-size: 24px;
  color: #1F1F1F;
  font-weight: 600;
  margin: 35px 0 20px 0;
  text-transform: lowercase;
}

.legal-page-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.legal-page-content a {
  color: #29339B;
  text-decoration: none;
}

.legal-page-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-page-content {
    padding: 100px 0 60px 0;
  }
  
  .legal-page-content h1 {
    font-size: 32px;
  }
  
  .legal-page-content h2 {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }
  
  .legal-page-content p {
    font-size: 15px;
  }
}

/* about page styles */
.about-page-content {
  padding: 120px 0 80px 0;
  background: #fff;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 36px;
  color: #29339B;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: lowercase;
}

.about-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 16px;
}

@media (max-width: 991px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .about-image {
    flex: none;
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-page-content {
    padding: 100px 0 60px 0;
  }
  
  .about-text h1 {
    font-size: 28px;
  }
  
  .about-text p {
    font-size: 16px;
  }
}


/* blog page styles */
.blog-page-content {
  padding: 120px 0 80px 0;
  background: #fff;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h1 {
  font-size: 42px;
  font-weight: 600;
  color: #29339B;
  margin-bottom: 15px;
  text-transform: lowercase;
}

.blog-header p {
  font-size: 18px;
  color: #6c757d;
}

@media (max-width: 768px) {
  .blog-page-content {
    padding: 100px 0 60px 0;
  }
  
  .blog-header h1 {
    font-size: 32px;
  }
  
  .blog-header p {
    font-size: 16px;
  }
}

/* subscribe page styles */
.subscribe-page-content {
  padding: 120px 0 80px 0;
  background: #fff;
}

.subscribe-header {
  text-align: center;
  margin-bottom: 60px;
}

.subscribe-header h1 {
  font-size: 42px;
  font-weight: 600;
  color: #29339B;
  margin-bottom: 15px;
  text-transform: lowercase;
}

.subscribe-header p {
  font-size: 18px;
  color: #6c757d;
}

.pricing-section {
  margin-bottom: 60px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #29339B;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(41, 51, 155, 0.1);
}

.pricing-card.premium {
  border-color: #29339B;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #29339B;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.card-header h3 {
  font-size: 24px;
  color: #1F1F1F;
  margin-bottom: 15px;
  font-weight: 600;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #29339B;
  margin-bottom: 25px;
}

.price span {
  font-size: 16px;
  color: #6c757d;
  font-weight: 400;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.features li {
  padding: 8px 0;
  color: #444;
  position: relative;
  padding-left: 25px;
}

.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #29339B;
  font-weight: bold;
}

.subscribe-btn {
  width: 100%;
  background: #29339B;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #1e2a7a;
  transform: translateY(-1px);
}

.premium-btn {
  background: linear-gradient(45deg, #29339B 0%, #74A4BC 100%);
}

.checkout-section {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
}

.checkout-form h2 {
  font-size: 28px;
  color: #29339B;
  margin-bottom: 25px;
  text-align: center;
}

.plan-info {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid #29339B;
}

.plan-info h3 {
  font-size: 16px;
  color: #29339B;
  margin-bottom: 8px;
}

.plan-info p {
  font-size: 18px;
  color: #1F1F1F;
  font-weight: 600;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1F1F1F;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #29339B;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}

.checkbox-group a {
  color: #29339B;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: #29339B;
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #1e2a7a;
}

.back-btn {
  width: 100%;
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background: #5a6268;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-header h2 {
  font-size: 32px;
  color: #29339B;
  margin-bottom: 20px;
}

.popup-body p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.popup-footer {
  margin-top: 30px;
}

.popup-btn {
  background: #29339B;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-btn:hover {
  background: #1e2a7a;
}

@media (max-width: 768px) {
  .subscribe-page-content {
    padding: 100px 0 60px 0;
  }
  
  .subscribe-header h1 {
    font-size: 32px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .checkout-section {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .popup-content {
    padding: 30px 20px;
  }
}

.notice-box {
  background: #e8f4fd;
  border: 1px solid #74A4BC;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 25px;
}

.notice-box h4 {
  font-size: 18px;
  color: #29339B;
  margin-bottom: 10px;
  font-weight: 600;
}

.notice-box p {
  font-size: 14px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* login page styles */
.login-page-content {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  min-height: 80vh;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h1 {
  font-size: 32px;
  color: #29339B;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.login-header p {
  font-size: 16px;
  color: #6c757d;
}

.login-tabs {
  display: flex;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 30px;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #29339B;
  color: #fff;
}

.login-form-container .form-group {
  margin-bottom: 20px;
}

.login-form-container label {
  display: block;
  margin-bottom: 8px;
  color: #1F1F1F;
  font-weight: 500;
  font-size: 14px;
}

.login-form-container input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.login-form-container input:focus {
  outline: none;
  border-color: #29339B;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
}

.forgot-password {
  color: #29339B;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  background: #29339B;
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 25px;
}

.login-btn:hover {
  background: #1e2a7a;
}

.social-login {
  text-align: center;
  margin-bottom: 25px;
}

.social-login p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.social-btn {
  width: 100%;
  background: #fff;
  border: 2px solid #e9ecef;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-btn:hover {
  border-color: #29339B;
  background: #f8f9ff;
}

.google-btn span {
  background: #4285f4;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

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

.login-help p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.login-help a {
  color: #29339B;
  text-decoration: none;
  font-weight: 500;
}

.login-help a:hover {
  text-decoration: underline;
}

.forgot-header {
  text-align: center;
  margin-bottom: 30px;
}

.forgot-header h2 {
  font-size: 24px;
  color: #29339B;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.forgot-header p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .login-page-content {
    padding: 100px 0 60px 0;
  }
  
  .login-container {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .login-header h1 {
    font-size: 28px;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* blog post styles */
.blog-post-content {
  padding: 120px 0 80px 0;
  background: #fff;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 30px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.post-category {
  background: #29339B;
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.post-date {
  color: #6c757d;
  font-size: 14px;
}

.post-header h1 {
  font-size: 36px;
  color: #1F1F1F;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  text-transform: lowercase;
}

.post-image {
  margin-bottom: 40px;
}

.post-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-content {
  margin-bottom: 50px;
}

.post-content p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.post-content p:last-child {
  margin-bottom: 0;
}

.post-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 30px;
}

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

.back-to-blog {
  color: #29339B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: #74A4BC;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-share span {
  font-size: 14px;
  color: #6c757d;
}

.post-share a {
  color: #29339B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.post-share a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-post-content {
    padding: 100px 0 60px 0;
  }
  
  .post-header h1 {
    font-size: 28px;
  }
  
  .post-content p {
    font-size: 16px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}


.footer .footer_top .footer_widget .contact-info {
  background: transparent;
}

.footer .footer_top .footer_widget .contact-info p {
  font-size: 16px;
  color: #BABABA;
  margin-bottom: 10px;
  background: transparent;
}