

:root {
  --lilaci: #dcd0ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  
  transition: .2s linear;
}


html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding: 6rem;
  overflow-x: hidden;
}

section {
  padding: 2rem 9%;
}

.heading {
  font-size: 4rem;
  text-align: center;
  padding: 2rem 0;
  margin: 2rem 0;
}

.heading span {
  color: #7661b3;
}

.btn {
  display: inline-block;
  background: #2e2e2e;
  color: #ffffff;
  font-size: 1.8rem;
  padding: .7rem 2rem;
  border-radius: .5rem;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: #7661b3;
}





header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

header .logo {
  font-size: 2.4rem;
  color: #333;
  font-weight: bolder;
}

header .logo span {
  color: var(--lilaci);
}

header .navbar {
  transition: .3s ease;
}

header .navbar a {
  font-size: 1.8rem;
  color: #666;
  padding: 0 1.5rem;
}

header .navbar a:hover {
  color: var(--lilaci);
}

header .btn {
  font-size: 1.8rem;
  padding: .5rem 2rem;
  border-radius: .5rem;
  background: var(--lilaci);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

header .btn:hover {
  background: #b8a0ff;
}

#toggler {
  display: none;
}

header .fa-bars {
  font-size: 2.5rem;
  color: #666;
  border-radius: .5rem;
  padding: .5rem 1.5rem;
  cursor: pointer;
  border: .1rem solid rgba(0, 0, 0, .1);
  display: none;
}





.home {  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  padding-left: 12%;
  
}

.home .content {
  max-width: 50rem;
}

.home .content h3 {
  font-size: 5rem;
  color: #333;
}

.home .content span {
  font-size: 1.5rem;
  color: #7661b3;
  padding: 1rem 0;
  line-height: 1.5;
}

.home .content p {
  font-size: 2rem;
  color: #302f31;
  padding: 1rem 0;
  line-height: 1.5;
}






.about .row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  padding-bottom: 3rem;
}

.about .row .image {
  flex: 1 1 40rem;
  position: relative;
}

.about .row .image img {
  width: 100%;
  border: 1.5rem solid #fff;
  height: 100%;
  border-radius: .5rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  object-fit: cover;
}

.about .row .content {
  flex: 1 1 40rem;
}

.about .row .content h3 {
  font-size: 3rem;
  color: #333;
}

.about .row .content p {
  font-size: 1.8rem;
  color: #666;
  padding: 1rem 0;
  line-height: 1.5;
}






.icon-container {
  background-color: #eeeff0;
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 1.5rem;
  padding: 4rem 8%;
}

.icon-container .icons {
  
  background: #fff;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  padding: 2rem;
  display: flex;
  align-items: center;
  flex: 1 1 25rem;
  border-radius: 6%;
}

.icon-container .icons img{
  height: 5rem;
  margin-right: 2rem;
 
}

.icon-container .icons h3 {
  font-size: 1.7rem;
  color: #333;
  padding-bottom: .5rem;
}

.icon-container .icons span {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
}







.volunteer .row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  padding-bottom: 3rem;
  flex-direction: row-reverse;
}

.volunteer .row .image {
  flex: 1 1 40rem;
  position: relative;
}

.volunteer .row .image img {
  width: 100%;
  border: 1.5rem solid #fff;
  height: 100%;
  border-radius: .5rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  object-fit: cover;
}

.volunteer .row .content {
  flex: 1 1 40rem;
}

.volunteer .row .content h3 {
  font-size: 3rem;
  color: #333;
}

.volunteer .row .content p {
  font-size: 1.8rem;
  color: #666;
  padding: 1rem 0;
  line-height: 1.5;
}







.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 70px;
  margin-top: 70px;
  
}

.card {
  background-color: #ffffff;
  border: 2px solid #dcd0ff;
  border-radius: 1.5rem;
  width: 21rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #8268c1;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.8rem;
  color: #3a2d63;
  margin-bottom: 1rem;
}

.card-desc {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.5;
}




.site {
  height: 43vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.container{
  max-width: 1100px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.testi{
  max-width: 900px;
  margin: 0 auto;
}

.testi .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  gap: 60px;
}

.testi .thumbnail {
  width: 150px;
  height: 150px;
  position: relative;
  flex-shrink: 0;
}

.testi .thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testi .thumbnail::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 30px);
  height: calc(100% + 10px);
  border-radius: 33% 67% 67% 33% / 67% 33% 67% 33%;
  background-color: #7661b3;
  z-index: -1;
  box-shadow: #2e2e2e;
}



.testi .aside{
  position: relative;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.testi .aside > p {
  position: relative;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 30px;
}

.testi .aside > p::before,
.testi .aside > p::after {
  font-family: serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  color: #dcd0ff;
  height: 40px;
  z-index: -1;
}

.testi .aside > p::before {
  content: open-quote;
  left: 10px;
  top: -40px;
}

.testi .aside > p::after {
  content: close-quote;
  right: 0;
}

.testi .aside .name {
  position: relative;
  width: fit-content;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.testi .aside .name h4 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #4b4b4b;
  margin: 0;
  padding: 0;
}

.testi .aside .name p {
  font-size: 1.2rem;
  background-color: #eae2f9; /* morumsu soft */
  color: #7661b3; /* ana mor tonu */
  padding: 4px 10px;
  border-radius: 10px;
  display: inline-block;
  margin: 0;
  font-weight: 600;
  
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.swiper {
  width: 100%;
  padding: 3rem 0;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #8268c1;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}







.custom-footer {
  background-color: #232324;
  padding: 50px 8% 30px;
  font-family: 'Verdana', sans-serif;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  margin-top: 0rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-left {
  flex: 1 1 280px;
  max-width: 300px;
}

.footer-logo {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-description {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.social-icons a {
  margin-right: 1.2rem;
  font-size: 1.8rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #6b5cb2;
}

.footer-links-group {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
}

.footer-links-group ul li {
  margin-bottom: 1.2rem;
}

.footer-links-group ul li a {
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-links-group ul li a:hover {
  color: #6b5cb2;
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.3rem;
  color: #ffffff;
}





.testimonials {
  background-color: #eeeff0;
  padding: 60px 0;
}


@media screen and (min-width: 768px) {
  .testi .wrapper {
    flex-direction: row;
    padding: 30px 100px;
  }
  .testi .thumbnail {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .icon-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  header .fa-bars {
    display: block;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: .1rem solid rgba(0, 0, 0, .1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  #toggler:checked ~ .navbar {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  header .navbar a {
    display: block;
    margin: 1.5rem;
    padding: 1rem;
    background: #fff;
    border: .1rem solid rgba(0, 0, 0, .1);
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .heading {
    font-size: 3rem;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg) scale(0.95);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.testi .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  animation: popIn 0.6s ease-in-out forwards;
}

.testi .thumbnail::before {
  animation: rotateShape 10s linear infinite;
  transition: transform 0.5s ease-in-out;
}

.swiper-pagination-bullet {
  background: #ccc; 
  opacity: 1;        
}

.swiper-pagination-bullet-active {
  background: #8268c1 ;
}




/* contact styles */

















/* -----------------------------------------------------------------------------------------------------------------------------*/

.contact-section {
  padding: 6rem 3rem;
  
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  gap: 5rem;
  flex-wrap: wrap;
}

.contact-container {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 2.5rem;
  max-width: 900px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  flex-grow: 1;
  min-width: 300px;
  transition: transform 0.3s ease;
}

.contact-container:hover {
  transform: translateY(-5px);
}

.contact-container h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.contact-container p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.5rem;
  margin: 1.2rem 0;
  border: 1px solid #ccc;
  border-radius: 1rem;
  font-size: 1.4rem;
  resize: none;
  background-color: #fdfdfd;
}

.contact-form button {
  display: inline-block;
  background: #4b3f72;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 1rem 2.4rem;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.contact-form button:hover {
  background-color: #6f5dbb;
  transform: scale(1.05);
}

.social-links-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  flex-shrink: 0;
  flex-grow: 1;
  max-width: 300px;
  min-width: 250px;
  margin-top: 40px;
}

.social-item {
  background: #ffffff;
  padding: 2rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1.8rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.social-item:hover {
  transform: translateY(-5px);
}

.social-item .icon-wrapper {
  background-color: #e8e0ff;
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.social-item .icon-wrapper .material-icons {
  font-size: 2.8rem;
  color: #4b3f72;
}

.social-item .text-content {
  display: flex;
  flex-direction: column;
}

.social-item .text-content .platform-name {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 0.2rem;
}

.social-item .text-content .handle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.social-item .text-content .link {
  font-size: 1.2rem;
  color: #6f5dbb;
  text-decoration: none;
  word-break: break-word;
}

.social-item .text-content .link:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .contact-container,
  .social-links-container {
    max-width: 90%;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-container {
    padding: 2.5rem 2rem;
  }
  .contact-container h2 {
    font-size: 2.4rem;
  }
  .contact-container p {
    font-size: 1.3rem;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 1.2rem;
    padding: 1.2rem;
  }
  .social-item {
    padding: 1.5rem 1.5rem;
    gap: 1.2rem;
  }
  .social-item .icon-wrapper {
    width: 45px;
    height: 45px;
  }
  .social-item .icon-wrapper .material-icons {
    font-size: 2.4rem;
  }
  .social-item .text-content .platform-name {
    font-size: 1.4rem;
  }
  .social-item .text-content .handle,
  .social-item .text-content .link {
    font-size: 1.1rem;
  }
}





.whyvolunteer {
  background: linear-gradient(135deg, #f3e7ff, #fff);
  padding: 6rem 8rem 9%;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 9%;
}

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 3.5rem;
  color: #7661b3;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: .5rem;
}

.benefit-card p {
  font-size: 1.6rem;
  color: #666;
}











.members-section {
  padding: 8rem 2rem;
  background: #fff;
  text-align: center;
}

.members-section h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.subtitle {
  font-size: 2rem;
  color: #888;
  margin-bottom: 5rem;
}

.members-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.member-card {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 350px;
  flex: 1 1 350px;
}

.member-card img {
  width: 180px;
  height: 240px;
  border-radius: 10%;
  object-fit: cover;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.social-icons i {
  color: #666;
  transition: color 0.3s ease;
  cursor: pointer;
}

.social-icons a {
  color: #666;
  transition: color 0.3s ease;
  cursor: pointer;
}
.social-icons i:hover {
  color: #000;
}

.divider {
  height: 6px;
  width: 120px;
  margin: 16px auto;
  border-radius: 5px;
}

.divider.purple { background: #8661c1; }

.member-card h3 {
  margin-top: 1.2rem;
  font-size: 2.2rem;
  color: #222;
}

.member-card .role {
  font-style: italic;
  color: #555;
  font-size: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.member-card .desc {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.8;
}








.guarantee-section {
            background-color:#ffffff; /* Koyu lacivert arka plan */
            color: #464646; /* Açık gri/mavi yazı rengi */
            padding: 60px 80px;
            border-radius: 15px;
            max-width: 1200px; /* İçeriğin genişliğini sınırlama */
          
            display: flex;
            flex-direction: column;
            gap: 40px; /* Ana bölümler arası boşluk */
            margin-top: 70px; /* Üstten boşluk */
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 50px; /* Başlık ve açıklama arası boşluk */
        }

        .header-left {
            flex: 1;
            min-width: 300px; /* Sol başlık ve metin için minimum genişlik */
        }

        .header-left h1 {
            font-size: 2.8em; /* Başlık boyutu */
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.2;
            color:#2b2b2b; /* Beyaz başlık */
        }

        .header-right p {
            font-size: 1.1em;
            line-height: 1.6;
            color: #7661b3; /* Daha açık gri açıklama metni */
            flex: 1;
            max-width: 450px; /* Sağdaki açıklama metninin genişliğini sınırlama */
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* İki eşit sütun */
            gap: 30px 60px; /* Satır ve sütun arası boşluklar */
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .feature-icon {
            font-size: 2.2em; /* İkon boyutu */
            color: #4b3f72; /* Açık mavi ikon rengi */
            min-width: 40px; /* İkon için sabit genişlik */
            text-align: center;
            padding-top: 5px; /* İkonun dikey hizalaması */
        }

        .feature-text h3 {
            font-size: 1.3em; /* Özellik başlığı boyutu */
            font-weight: bold;
            margin-bottom: 5px;
            color: #222222; /* Beyaz özellik başlığı */
        }

        .feature-text p {
            font-size: 0.95em; /* Özellik açıklaması boyutu */
            line-height: 1.5;
            color: #494949; /* Daha açık gri özellik açıklaması */
        }


.btn.custom-btn {
  display: inline-block;
  background: #4b3f72;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  padding: 1rem 2.4rem; /* increased horizontal padding for button look */
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  margin: 0 auto; /* center horizontally */
}

.btn.custom-btn:hover {
  background-color: #6b5cb2;
  transform: scale(1.05);
}  

@media (max-width: 1024px) {
            .guarantee-section {
                padding: 40px 60px;
            }
            .header-content {
                flex-direction: column;
                gap: 30px;
            }
            .features-grid {
                grid-template-columns: 1fr; /* Tek sütuna düşürme */
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .guarantee-section {
                padding: 30px 40px;
            }
            .header-left h1 {
                font-size: 2.2em;
            }
            .header-right p {
                font-size: 1em;
            }
            .feature-icon {
                font-size: 1.8em;
            }
            .feature-text h3 {
                font-size: 1.2em;
            }
            .feature-text p {
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .guarantee-section {
                padding: 20px 25px;
            }
            .header-left h1 {
                font-size: 1.8em;
            }
            .header-right p {
                font-size: 0.9em;
            }
            .feature-item {
                flex-direction: column; /* Mobil cihazlarda ikon ve metni alt alta */
                text-align: center;
                gap: 10px;
            }
            .feature-icon {
                margin-bottom: 5px;
            }
        }




        .support-options {
  padding: 4rem 2rem;
  background-color: #f8f5ff;
  text-align: center;
  font-family: 'Verdana', sans-serif;
}

.support-header h2 {
  font-size: 2.5rem;
  color: #4b3f72;
  margin-bottom: 0.5rem;
}

.support-header p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.support-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-8px);
}

.support-card .material-icons {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.support-card:nth-child(1) .material-icons {
  color: #ae61c1; /* Mor tonu */
}

.support-card:nth-child(2) .material-icons {
  color: #9a78c9; /* Açık mor */
}

.support-card:nth-child(3) .material-icons {
  color: #927fe0; /* Lila-mavi geçişi */
}

.support-card:nth-child(4) .material-icons {
  color: #757fea; /* Mavi tonu */
}


.support-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.support-card p {
  font-size: 1rem;
  color: #666;
}

