:root {
  --primary-color: #5b4d72;
  --secondary-color: #f0edf3;
  --accent-color: #8a7a9e;
  --text-color: #333333;
  --white-color: #ffffff;
  --light-gray: #f5f5f5;
}

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

body {
  font-family: "Helvetica", "Arial", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--white-color);
  font-size: 16px;
  overflow-x: hidden;
}

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

.contact-info a {
  font-weight: 500;
}

.social-links a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--accent-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
  color: var(--primary-color);
  transform: translateY(-2px);
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section {
  width: 100%;
  min-height: calc(100vh - 80px);
  background-image: url("/UK.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 2rem 5%;
  margin-top: 80px;
}

.hero-content {
  color: white;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  padding: 1rem;
}

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

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-content,
.current-appeals,
.projects-section,
.services-container {
  background-color: var(--white-color);
  color: var(--text-color);
  padding: 1rem 0;
}

.about-content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.about-content ul li {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-button:first-child {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.cta-button:first-child:hover {
  background-color: var(--primary-color);
}

.cta-button.secondary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.cta-button.secondary:hover {
  background-color: var(--accent-color);
}

.partner-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}

.services-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-section {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.service-section h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: auto;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 1rem;
}

.service-list li:before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.service-divider {
  width: 1px;
  background-color: var(--light-gray);
  margin: 0;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  background-color: var(--light-gray);
  padding: 4rem 0;
}

.statistic h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.statistic p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  background-color: var(--white-color);
  padding: 4rem 0;
}

.testimonial-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  background-color: var(--white-color);
  padding: 4rem 0;
}

.news-card {
  background-color: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-color);
}

.current-appeals {
  background-color: var(--light-gray);
  padding: 4rem 0;
  text-align: center;
  width: 100%; /* Add this line */
  overflow-x: hidden; /* Add this line */
}

.current-appeals h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.current-appeals p {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.projects-grid1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.project-card1 {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(91, 77, 114, 0.1);
  background-color: var(--white-color);
  transition: transform 0.3s ease;
}

.project-card1.active {
  transform: scale(1.05);
}

.project-image1 {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.project-content1 {
  padding: 1.5rem;
  background-color: var(--white-color);
}

.project-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.donate-btn {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .services-container {
    flex-direction: column;
  }

  .service-divider {
    width: 80%;
    height: 1px;
    margin: 1rem auto;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .service-section {
    padding: 1.5rem;
  }

  .service-section h3 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .donation-form {
    max-width: 100%;
  }
  .donation-form1 {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
  .about-content p {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    min-height: unset;
    max-height: 40vh;
    background-position: top center;
    padding: 1rem 5%;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .project-card1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .project-card1 {
    flex: 0 0 calc(100% - 20px);
  }
  .project-image1 {
    width: 100%;
    height: 300px;
  }

  .project-content1 {
    width: 100%;
    text-align: center;
  }
}

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

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

  .donation-form {
    max-width: 100%;
  }
  .donation-form1 {
    max-width: 100%;
  }

  .donation-option,
  .donation-amount {
    font-size: 0.9rem;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .logo-image {
    max-height: 75px;
    padding-top: 10px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .donation-form {
    max-width: 100%;
  }
  .donation-form1 {
    max-width: 100%;
  }

  .project-card1 {
    flex: 0 0 100%;
    margin: 0 0 20px 0;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
  .about-content p {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-form,
.contact-info {
  flex: 1 1 calc(50% - 1rem);
  min-width: 300px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 0.5rem;
}
.social-links {
  margin-top: 1rem;
}
.social-links a {
  display: inline-block;
  margin-right: 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}

.donation-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.donation-form h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.donation-form1 {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.donation-form1 h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group input[type="checkbox"] {
  margin-right: 5px;
}

#custom-amount {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.submit-donation {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-donation:hover {
  background-color: var(--primary-color);
}

#donation-total {
  font-weight: bold;
  font-size: 18px;
}

.about-hero {
  position: relative;
  height: 30vh;
  /* Adjust this value as needed */
  background-image: url("path-to-your-hero-image.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donation-container {
  display: grid;
  grid-template-columns: 1fr; /* Default for mobile */
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .donation-container {
    grid-template-columns: repeat(2, 1fr); /* Creates 2 equal columns */
    max-width: 1200px;
    margin: 2rem auto;
  }

  .donation-form1,
  .donation-form {
    grid-column: 2 / 3; /* Places form in first column */
  }

  .donation-info {
    grid-column: 1 / 2; /* Places info in second column */
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.donation-amounts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.donation-amount {
  flex: 1;
  padding: 0.5rem;
  text-align: center;
  background-color: #f4f4f4;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #ddd;
}

.donation-amount.active {
  background-color: var(--accent-color);
  color: white;
}

.custom-amount {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.submit-donation {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-donation:hover {
  background-color: #c0392b;
}

.donation-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-top: 45px;
}

.donation-info p {
  margin-bottom: 1rem;
}

.impact-list {
  list-style-type: none;
  padding-left: 0;
}

.impact-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.impact-list li::before {
  content: "✓";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .donation-form,
  .donation-info {
    flex: 1 1 100%;
  }
}
.animated-link {
  color: #ff69b4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.animated-link:hover {
  color: #ff1493;
  text-shadow: 0 0 5px #ff69b4;
}
.submit-button {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}
.thank-you-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(91, 77, 114, 0.5);
  backdrop-filter: blur(3px);
}

.thank-you-content {
  background-color: #ffffff;
  margin: 15% auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

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

.thank-you-content h2 {
  color: #5b4d72;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: center;
}

.thank-you-content p {
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

.close-thank-you {
  background-color: #5b4d72;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: block;
  margin: 1.5rem auto 0;
  transition: background-color 0.3s ease;
}

.close-thank-you:hover {
  background-color: #8a7a9e;
}

.gift-aid-group {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 4px;
}

.gift-aid-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.gift-aid-option input[type="radio"] {
  margin: 0;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.gift-aid-option label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-color);
  font-weight: normal;
  display: flex;
  align-items: center;
}

.gift-aid-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.gift-aid-popup-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

.gift-aid-popup h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.gift-aid-popup p {
  margin-bottom: 1rem;
}

.gift-aid-popup form {
  display: flex;
  flex-direction: column;
}

.gift-aid-popup input {
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.gift-aid-popup button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gift-aid-popup button:hover {
  background-color: var(--primary-color);
}

#close-popup {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .donation-form {
    padding: 1.5rem !important;
  }
  .donation-form1 {
    padding: 1.5rem !important;
  }

  .payment-methods {
    flex-direction: column !important;
  }

  .payment-method {
    margin-right: 0 !important;
    margin-bottom: 0.5rem !important;
  }
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-button:hover {
  transform: translateY(-2px);
}

.payment-button:active {
  transform: translateY(0);
}

.payment-icon {
  height: 24px;
  margin-right: 10px;
}

.google-pay {
  background-color: white;
  color: #000000;
  border: 1px solid #000000;
}

.google-pay:hover {
  background-color: #f8f8f8;
}

.apple-pay {
  background-color: white;
  color: #000000;
  border: 1px solid #000000;
}

.apple-pay:hover {
  background-color: #f8f8f8;
}

.paypal-card {
  background-color: #0070ba;
  color: white;
}

.paypal-card:hover {
  background-color: #005ea6;
}

@media (min-width: 768px) {
  .payment-buttons {
    flex-direction: row;
  }

  .payment-button {
    flex: 1;
  }
}

.consent-group {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.consent-option {
  display: flex;
  align-items: flex-start;
}

.consent-option input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.consent-option label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-color);
}

.consent-option a {
  color: var(--accent-color);
  text-decoration: underline;
}

.consent-option a:hover {
  color: var(--primary-color);
}

.mobile-btn {
  display: block;
}

@media (min-width: 600px) {
  .mobile-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .Sadaqah-donation-form {
    display: none;
  }
  /* .donation-form {
    display: none;
  } */
}

p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}

.Sadaqah-hero p,
.Sadaqah-subtitle {
  font-size: 1.4rem;
  color: #5b4d72;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.about-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  /* max-width: 800px; */
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
}

.donation-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  padding: 0 1rem;
  padding-top: 45px;
}

.Sadaqah-quote {
  font-size: 1.25rem;
  color: #8a7a9e;
  font-style: italic;
  line-height: 1.8;
  margin: 2rem auto;
  padding: 1.5rem;
  border-left: 4px solid #8a7a9e;
  background-color: #f9f8fb;
  max-width: 800px;
}

.donation-info p:last-child {
  font-size: 1rem;
  color: #5b4d72;
  font-weight: 500;
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  p {
    font-size: 1rem;
  }

  .Sadaqah-hero p,
  .Sadaqah-subtitle {
    font-size: 1.2rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  .Sadaqah-quote {
    font-size: 1.1rem;
    padding: 1rem;
  }
}

.payment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.payment-overlay.hidden {
  display: none;
}

.buttons-container {
  display: flex;
  gap: 15px;
  width: 100%;
}

.submit-donation,
.paypal-button {
  flex: 1;
  padding: 12px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.paypal-button {
  background-color: #ffc439;
  color: #003087;
  border: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paypal-button:hover {
  background-color: #f4bb38;
}
