/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #000000;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 1), rgba(255, 255, 255, 1));
  background-size: 200% 200%;
  animation: gradientAnimation 10s infinite alternate ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: {value=20, units=px}
           {value=15, units=px}
           {value=20, units=px}
           {value=15, units=px};
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #333333;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 10px rgba(0, 165, 189, 0.5);
}

.cta-button:hover {
  background-color: #000000;
  transform: scale(1.05);
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Providers Section */
.providers-section {
  padding: 4rem 1rem;
  text-align: center;
}

.providers-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #000000;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.provider-card {
  background: white;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.provider-card img {
  width: 90px;
  height: 90px;
  border-radius: 10%;
  margin-bottom: 1rem;
}

.provider-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  background-color: #333333;
  color: #FFFFFF;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

.provider-card:hover {
  transform: translateY(-5px);
}

/* Newsletter Section */
.newsletter {
  padding: 3rem 1rem;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.newsletter p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter input {
  padding: 0.8rem;
  width: 100%;
  max-width: 300px;
  border: none;
  border-radius: 50px;
}

.newsletter button {
  padding: 0.8rem 1.5rem;
  background-color: #333333;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter button:hover {
  background-color: #000000;
}

/* Footer */
.footer {
  padding: 1.5rem;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .providers-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .providers-section h2 {
    font-size: 1.8rem;
  }

  .provider-card {
    width: 90%;
  }
}


/* Blog Styles */
.blog-header {
  background: linear-gradient(135deg, #000000, #FFFFFF);
  padding: 60px 20px;
  text-align: center;
  color: #FFFFFF;
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 1rem;
  opacity: 0.8;
}

.blog-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.blog-content {
  max-width: 800px;
  margin: 40px auto;
  line-height: 1.8;
  font-size: 18px;
  color: #000000;
}

.blog-tags {
  text-align: center;
  margin-top: 40px;
}

.blog-tags .tag {
  display: inline-block;
  background: #333333;
  color: #FFFFFF;
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  text-decoration: none;
}

.blog-tags .tag:hover {
  background: #000000;
}

.blog-comments {
  max-width: 800px;
  margin: 50px auto;
}

.blog-related-posts {
  max-width: 800px;
  margin: 50px auto;
}

.related-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.related-post {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 20px);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post-content {
  padding: 20px;
}

.related-post h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.related-post a {
  text-decoration: none;
  color: #000000;
}

.related-post a:hover {
  color: #333333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2rem;
  }

  .related-post {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .related-post {
    flex: 1 1 100%;
  }
}


/* Form Styles */
/* General form styles */
.hs-form {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial;
}

/* Form field container */
.hs-form-field {
  margin-bottom: 20px;
}

/* Labels */
.hs-form-field label {
  font-weight: bold;
  color: #000000;
  display: block;
  margin-bottom: 8px;
}

/* Input fields */
.hs-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #000000;
  border-radius: 0px;
  background: #fff;
  transition: all 0.3s ease;
}

.hs-input:focus {
  border-color: #333333;
  outline: none;
  box-shadow: 0 0 8px #333333;
}

/* Error messages */
.hs-error-msgs {
  color: #ff4d4d;
  font-size: 14px;
  margin-top: 5px;
}

/* Submit button */
.hs-button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #333333;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hs-button:hover {
  background-color: #000000;
}

/* Form responsiveness */
@media (max-width: 768px) {
  .hs-form {
    padding: 20px;
  }

  .hs-input {
    font-size: 14px;
  }

  .hs-button {
    font-size: 16px;
  }
}

/* Captcha */
.hs_recaptcha {
  margin-top: 20px;
  text-align: center;
}

/* Placeholder Styling */
.hs-input::placeholder {
  color: #bbb;
  font-style: italic;
}

/* Success message */
.hs-form-private.hsForm_8536771c-0ebe-4472-be7d-740e10a68075 .submitted-message {
  background: #333333;
  color: #fff;
  padding: 20px;
  border-radius: 0px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* Adjustments for stacked forms */
.hs-form.stacked .hs-form-field {
  width: 100%;
}

/* Comment field */
.hs-comment textarea {
  min-height: 120px;
  resize: vertical;
}

/* Form alignment */
.hs-form .actions {
  text-align: center;
}



/* Blog Listing Page Styles */
.body-container--blog-index {
  background: #FFFFFF;
  font-family: Arial;
  color: #000000;
}

.body-container--blog-index h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.body-container--blog-index p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.blog-listing-item {
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #fff;
}

.blog-listing-item img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #333333;
}

.blog-listing-item:hover {
  transform: scale(1.03);
}

.blog-listing-item h3 {
  font-size: 1.8rem;
  padding: 20px 15px;
  margin: 0;
}

.blog-listing-item p {
  padding: 0 15px 20px;
  color: #666;
  font-size: 1rem;
}

.blog-listing-item a {
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.blog-listing-item a:hover {
  color: #000000;
}

/* Pagination styles */
.hs-pagination {
  text-align: center;
  margin-top: 50px;
}

.hs-pagination .hs-pagination__link {
  display: inline-block;
  padding: 10px 15px;
  color: #000000;
  border-radius: 0px;
  text-decoration: none;
  background: #333333;
  margin: 0 5px;
}

.hs-pagination .hs-pagination__link:hover {
  background: #000000;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-listing-item h3 {
    font-size: 1.5rem;
  }

  .blog-listing-item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .body-container--blog-index h1 {
    font-size: 2rem;
  }

  .body-container--blog-index p {
    font-size: 1rem;
  }
}


/* About Us Page Styles */
.body-container--about {
  font-family: Arial;
  color: #000000;
}

.body-container--about h1,
.body-container--about h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.body-container--about p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.body-container--about ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.body-container--about ul li {
  font-size: 1.1rem;
  padding: 8px 0;
  color: #333333;
}

/* Image styling */
.body-container--about img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Mission section */
.body-container--about .mission-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
}

.body-container--about .mission-section h2 {
  color: #FFFFFF;
}

/* Responsive design */
@media (max-width: 768px) {
  .body-container--about h1 {
    font-size: 2.5rem;
  }
  .body-container--about p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .body-container--about h1 {
    font-size: 2rem;
  }
  .body-container--about p {
    font-size: 0.9rem;
  }
}



.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.provider-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.provider-card:hover {
  transform: translateY(-5px);
}

.provider-logo img {
  max-width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.chip {
  background-color: #00bcd4;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

.provider-website a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #203a43;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.provider-website a:hover {
  background-color: #00a5bd;
}

/* Navigation Styles */
.header {
  background-color: #000000;
  padding: 1rem 2rem;
  color: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav ul li {
  display: inline;
}

.nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #333333;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Blog Listing Wrapper */
.blog-listing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  color: #000000;
}

/* Blog Author and Tag Headers */
.blog-author-header,
.blog-tag-header,
.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-author-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.blog-author-header h1,
.blog-tag-header h1,
.blog-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFFFFF;
  text-transform: uppercase;
}

.blog-author-header p,
.blog-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #FFFFFF;
}

/* Blog Post Featured Section */
.blog-post-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 1), rgba(255, 255, 255, 1));
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.blog-post-featured__image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
}

.blog-post-featured__content {
  padding: 2rem;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.blog-post-featured__content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #FFFFFF;
}

.blog-post-featured__content p {
  font-size: 1.1rem;
  color: #FFFFFF;
}

/* Blog Post Items Grid */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-post-item {
  background-color: #FFFFFF;
  border-radius: 0px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blog-post-item__image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
}

.blog-post-item__content {
  padding: 1.5rem;
  text-align: center;
}

.blog-post-item__content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #FFFFFF;
}

.blog-post-item__content p {
  font-size: 1rem;
  color: #000000;
}

/* Blog Pagination */
.blog-pagination {
  text-align: center;
  margin-top: 3rem;
}

.blog-pagination a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0 0.3rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  background-color: #333333;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination a.active {
  background-color: #000000;
  color: #FFFFFF;
}

.blog-pagination a.prev,
.blog-pagination a.next {
  font-weight: normal;
  background-color: #000000;
}

.blog-pagination a.prev:hover,
.blog-pagination a.next:hover {
  background-color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-post-featured__content h2 {
    font-size: 1.8rem;
  }

  .blog-post-item__content h3 {
    font-size: 1.5rem;
  }

  .blog-posts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-post-featured__image {
    height: 300px;
  }

  .blog-post-item__image {
    height: 200px;
  }

  .blog-pagination a {
    padding: 0.6rem 1rem;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-featured__content h2 {
    font-size: 1.8rem;
  }

  .blog-post-item__content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .blog-post-featured__image {
    height: 300px;
  }

  .blog-post-item__image {
    height: 200px;
  }

  .blog-pagination a {
    padding: 0.6rem 1rem;
  }
}


/* General styles for anchor tags */
a {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Hover effect to change color */
a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Styled link as a button */
.btn-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background-color: #333333;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-link:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Links within paragraphs */
p a {
  color: #333333;
  font-weight: normal;
  border-bottom: 2px solid #333333;
  transition: border-bottom 0.3s ease;
}

p a:hover {
  color: #000000;
  border-bottom: 2px solid #000000;
}

/* Navigation links */
.nav ul li a {
  font-size: 1.1rem;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav ul li a:hover {
  background-color: #333333;
  color: #FFFFFF;
}