/*
Theme Name: Twenty Twenty-One Blank
Theme URI: https://yourdomain.com/
Author: You
Author URI: https://yourdomain.com/
Description: Minimal child theme of Twenty Twenty-One that outputs blank HTML.
Template: twentytwentyone
Version: 1.0
*/

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 44px;
  color: #002147;
  margin-bottom: 5px;
}

.content {
  color: #000;
  padding: 10px;
}

.content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.content-text {
  flex: 1;
}

.content h2 {
  font-size: 22px;
  color: #002147;
  margin: 20px 0 10px;
}

.content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.image {
  text-align: center;
  margin-bottom: 20px;
}

.image img {
  max-width: 100%;
  height: auto;
}

.sub-section {
  margin: 20px 0;
}

.tbpa-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.tbpa-logo img {
  max-width: 100%;
  height: auto;
}

.cta-section {
  text-align: center;
  margin: 30px 0;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  margin-top: -50px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cta-section h3 {
  font-size: 24px;
  color: #002147;
  margin-bottom: 10px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

.cta-button.primary {
  background-color: #002147;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 33, 71, 0.3);
}

.cta-button.primary:hover {
  background-color: #001a3a;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background-color: transparent;
  color: #002147;
  border: 2px solid #002147;
  box-shadow: 0 2px 10px rgba(0, 33, 71, 0.08);
}

.cta-button.secondary:hover {
  background-color: #002147;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact {
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
}

.footer {
  text-align: center;
  margin-top: 30px;
  background-color: #000;
  color: white;
  padding: 10px;
  border-radius: 0 0 8px 8px;
}

.footer h1 {
  font-size: 16px;
  margin: 0;
}

@media (min-width: 600px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-button {
    width: auto;
  }
}

@media (min-width: 768px) {
  .content-top {
    flex-direction: row;
    align-items: flex-start;
  }

  .content-text {
    flex: 3;
    padding-right: 20px;
  }

  .tbpa-logo {
    flex: 1;
    justify-content: flex-end;
    margin-top: 0;
  }

  .image img {
    max-width: 115%;
  }
}

@media (max-width: 599px) {
  .tbpa-logo img {
    width: 60%;
    max-width: 200px;
    height: auto;
  }
}

.image-award-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.image-award-wrapper .image,
.image-award-wrapper .tbpa-logo {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .image-award-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .image-award-wrapper .image,
  .image-award-wrapper .tbpa-logo {
    width: 48%;
    text-align: left;
  }

  .image-award-wrapper .tbpa-logo {
    text-align: right;
  }
}

.content-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

 .testimonial-wrapper {
   display: flex;
   flex-direction: column;
   gap: 30px;
   justify-content: center;
  }

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

 .testimonial-card {
   background: white;
   color: #333;
   padding: 24px 20px;
   border-radius: 12px;
   width: 100%;
   max-width: 320px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
   text-align: left;
  }
