/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: #333;
}

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

img {
  max-width: 100%;
}

/* Header Styles */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.top-header {
  background-color: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  width: 100%;
}

.contact-info {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.contact-link {
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #333;
  transform: translateY(-1px);
}

.contact-link i {
  font-size: 16px;
}

.contact-link span {
  font-size: 14px;
}

.contact-link .fa-whatsapp {
  color: #25D366;
}

.contact-link:hover .fa-whatsapp {
  color: #128C7E;
}

.contact-link .fa-phone {
  color: #007bff;
}

.contact-link:hover .fa-phone {
  color: #0056b3;
}

.contact-link .fa-envelope {
  color: #ea4335;
}

.contact-link:hover .fa-envelope {
  color: #d62516;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.main-header .logo-img {
  height: 50px; /* Set logo size */
}

.navbar {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar a {
  color: #555555;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #7D3C98; /* Matching hover color */
}

.main-header .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff;
  color: white !important;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.main-header .btn:hover {
  background-color: #0056b3;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #555555;
  padding: 14px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
      display: none; /* Hide navbar items by default */
      flex-direction: column; /* Stack items vertically */
      width: 100%;
      background-color: white;
      position: absolute;
      top: 60px;
      left: 0;
      z-index: 10;
  }

  .navbar a {
      padding: 15px;
      text-align: left;
  }

  .navbar.active {
      display: flex; /* Show navbar when active */
  }

  .hamburger {
      display: block; /* Show hamburger icon */
  }

  .main-header {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 768px) {
    .contact-info {
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* This positions the image higher up to show faces */
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.prev-slide,
.next-slide {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive slider adjustments */
@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

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

    .slide img {
        object-position: center 15%; /* Adjust slightly for mobile */
    }
}

/* Wrapper */
.wrapper {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  margin-bottom: 0; /* Remove bottom margin */
}

.wrapper p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-bottom: 20px;
}

.wrapper .btn:hover {
  background-color: #0056b3;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    width: 100%;
    margin-top: 0;
    border-top: 1px solid #eee;
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-links a i {
    font-size: 16px;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-links a:hover i.fa-facebook {
    color: #1877f2;
}

.footer-links a:hover i.fa-youtube {
    color: #ff0000;
}

.footer-links a:hover i.fa-linkedin {
    color: #0077b5;
}

.footer-links a:hover i.fa-instagram {
    color: #e4405f;
}

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin: 0 20px;
}

.footer-copyright a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
        padding: 0 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 13px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}

.copy {
  text-align: center;
  background: #ffffff;
  color: #333333;
  padding:5px 0;
}

@media screen and (max-width: 1024px) {
  .navbar {
      flex-direction: column;
      width: 100%;
  }

  .navbar a {
      padding: 10px 20px;
      width: 100%;
      text-align: left;
  }

  .navbar.active {
      display: flex;
  }

  .top-header {
      flex-direction: column;
      justify-content: center;
      text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .wrapper {
      padding: 30px 10px;
  }

  .wrapper p {
      font-size: 14px;
  }

  .btn {
      padding: 8px 16px;
  }
}

/* Contact Section Styles */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

.contact-form {
  flex: 1;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-details {
  flex: 1;
  padding: 20px;
}

.map {
  grid-column: 1 / -1;
  margin-top: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map h3 {
  color: #00468b;
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .map {
    padding: 20px;
  }

  .map-container {
    height: 350px;
  }
}

/* Responsive Fixes */
@media screen and (max-width: 768px) {
  footer {
      flex-direction: column;
      align-items: center;
  }

  footer .footer-links {
      flex-direction: column;
      gap: 10px;
      text-align: center;
  }
}

/* ... (existing CSS) */

.services {
  padding: 20px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Create responsive grid */
  gap: 20px; /* Spacing between cards */
}

.service-card {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card .service-image {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover; /* This will maintain aspect ratio while covering the container */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-card .btn {
  display: block;
  margin-top: 15px;
  color: #333;
  text-decoration: none;
}

.service-card p {
  margin-top: 10px;
  color: #666;
  line-height: 1.6;
}

/* ... (existing CSS) */

.contact-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-us h2 {
    grid-column: 1 / -1;
    text-align: center;
    color: #00468b;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
    color: #00468b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

.contact-form button {
    background: #00468b;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #003366;
}

.map {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
}

.map h3 {
    color: #00468b;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map a:hover img {
    transform: scale(1.02);
}

.social-media {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.social-media li a {
    color: #00468b;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-media li a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .contact-us {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contact-us h2 {
        font-size: 2rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-details,
    .contact-form {
        padding: 20px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 60px 0;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    color: #00468b;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    flex: 0 1 200px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-info h3 {
    color: #00468b;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-info .title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-profile {
    display: inline-block;
    padding: 8px 15px;
    background: #00468b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-profile:hover {
    background: #003366;
}

@media (max-width: 768px) {
    .team-row {
        justify-content: center;
    }
    
    .team-member {
        flex: 0 1 160px;
    }

    .member-image {
        height: 160px;
    }

    .member-info h3 {
        font-size: 1rem;
    }

    .member-info .title {
        font-size: 0.8rem;
    }
}

/* About Us Page Styles */
.about-us {
    padding: 60px 0;
    background: #f9f9f9;
}

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

.about-us h1 {
    text-align: center;
    color: #00468b;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

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

.about-text h2 {
    color: #00468b;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.about-text ul {
    margin: 0 0 20px 20px;
    list-style-type: disc;
}

.about-text li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

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

    .about-us h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }
}

/* Newsletter Page Styles */

.newsletter {
  padding: 20px;
}

.newsletter-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
}

.newsletter-post {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.newsletter-post:hover {
  transform: translateY(-5px);
}

.newsletter-post h3 {
  color: #333;
  margin-bottom: 15px;
}

.newsletter-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.newsletter-post p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-post .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.newsletter-post .btn:hover {
  background-color: #0056b3;
}

/* Responsive design for newsletter grid */
@media (max-width: 992px) {
  .newsletter-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .newsletter-posts {
    grid-template-columns: 1fr;
  }
}

/* ... (existing CSS) */

:root {
  --primary-color: #7D3C98;  /* Replace with your primary logo color */
  --secondary-color: #f9f9f9; /* Replace with your secondary logo color */
}

.payment-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.payment-container h1 {
  font-size: 1.8rem;
  color: var(--primary-color);  /* Use the primary color variable */
  margin-bottom: 20px;
  text-align: center;
}

.payment-summary {
  background-color: var(--secondary-color); /* Use the secondary color variable */
  padding: 15px;
  border: 1px solid #ddd;
  margin-top: 20px;
  border-radius: 5px;
}

.payment-summary h3 {
  font-size: 1.2rem;
  color: #333;
}

.payment-summary p {
  color: #555;
}

#card-element {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn-pay {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);  /* Use the primary color variable */
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-pay:hover {
  background-color: #5a2870;
}

#payment-result {
  margin-top: 10px;
  color: red;
}

/* Centering the images within the card */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.service-image {
  width: 80%; /* Adjust width of image */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 15px; /* Space between image and text */
  border-radius: 8px; /* Optional: Add rounded corners to the image */
}

/* Team Section Styles */
.team-section {
    padding: 60px 0;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    color: #00468b;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    flex: 0 1 200px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-info h3 {
    color: #00468b;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-info .title {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-profile {
    display: inline-block;
    padding: 8px 15px;
    background: #00468b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-profile:hover {
    background: #003366;
}

@media (max-width: 768px) {
    .team-row {
        justify-content: center;
    }
    
    .team-member {
        flex: 0 1 160px;
    }

    .member-image {
        height: 160px;
    }

    .member-info h3 {
        font-size: 1rem;
    }

    .member-info .title {
        font-size: 0.8rem;
    }
}

/* About Us Page Styles */
.about-us {
    padding: 60px 0;
    background: #f9f9f9;
}

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

.about-us h1 {
    text-align: center;
    color: #00468b;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

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

.about-text h2 {
    color: #00468b;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.about-text ul {
    margin: 0 0 20px 20px;
    list-style-type: disc;
}

.about-text li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

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

    .about-us h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }
}

/* Success Message Styles */
.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#submit-btn {
    position: relative;
}

#submit-btn.loading {
    color: transparent;
}

#submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
  .wrapper {
      padding: 30px 15px;
  }
  
  .wrapper p {
      font-size: 1.1rem;
  }
  
  footer {
      padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .wrapper {
      padding: 25px 10px;
  }
  
  .wrapper p {
      font-size: 1rem;
  }
  
  footer {
      padding: 10px 0;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 2% auto;
  padding: 20px;
  width: 90%;
  height: 90%;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 10px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  background: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: #000;
  transform: scale(1.1);
}

#newsletterPdfFrame {
  width: 100%;
  height: calc(100% - 20px);
  border: none;
}
