
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-section, .contact-section {
    padding: 30px 35px;
    background-color: #fff;
}

.youth-intro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 10px;
    background-color: #7A0000;
    width: 100%;
}

.about-wrapper, .contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.youth-intro-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
}


.about-data, 
.contact-data, 
.about-data, 
.feedback-form {
    flex: 1 1 400px;
    max-width: 540px;
    padding: 20px 30px;
}

.about-data p {
   font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
    text-align:justify;
}

.youth-intro-data h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.youth-intro-data p {
    text-align: justify;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    max-width: 1000px;
    font-family: 'Georgia', serif;
    color: #fff;
}


.parish-data {
    margin-bottom: 150px;
}

.about-parish-data, .about-vision-data, .about-mission-data {
    text-align: justify;
}

.about-parish-data span{
    color: #7A0000
}

.youth-intro-data span {
    color: #ebc238
}

.parish-data-logo {
    text-align: center;
    margin-bottom: 10px;
}

.parish-data-logo img {
    height: 150px;
}

.parish-description-logo {
    display: block;
    text-align: center;
    font-style: italic;
    color: grey;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 12px;
}

.parish-links {
    text-align: center;
    padding: 0 60px;
}

.parish-links h3{
   margin-bottom: 0;
   text-align: center;
   margin-top: 10px;
   font-size: 17px;
}



.parish-links ul {
    list-style-type: disc; /* shows standard bullet points */
    padding-left: 0px;    /* adds space so bullets aren't flush with the edge */
    display: inline-block; /* keeps the list centered */
    text-align: left;      /* aligns text inside the list to the left */
    margin-top: 8px;
    color: #7A0000;
}

.parish-links li {
    margin: 5px 0;
}

.parish-links a {
    color: #7A0000;
    text-decoration: none;
}

.parish-links a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .about-section {
    padding: 25px 20px;
  }

  .about-wrapper {
    gap: 15px;
  }

  .about-data, .parish-data {
    padding: 20px;
  }

  .youth-intro-data h2 {
    font-size: 24px;
  }

  .youth-intro-data p {
    font-size: 15px;
  }

  .parish-data-logo img {
    height: 120px;
  }
}

@media screen and (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .about-data, .parish-data {
    max-width: 100%;
    padding: 15px;
  }

  .parish-links {
    padding: 0 20px;
  }

  .youth-intro-section {
    padding: 40px 10px;
    flex-direction: column;
  }

  .youth-intro-data h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .youth-intro-data p {
    font-size: 14px;
    line-height: 1.5;
  }

  .parish-data-logo img {
    height: 100px;
  }
}


