@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

/* Загальні стилі для header */
header {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: auto;
  margin-right: 1rem;
}

.logo p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* Стилі для навігації */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4caf50; /* Зелений для підкреслення активного елемента */
}

/* Адаптивний дизайн */
@media (max-width: 768px) {
  .container-header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .logo p {
    font-size: 1.3rem;
  }
}

footer {
  background-color: #444dc0;
  color: white;
  padding: 30px 0;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 14px;
  margin: 0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-menu li {
  margin-left: 20px;
}

.footer-menu a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #f4a300;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container-header {
    flex-direction: column;
  }
}

/* ======= CONTACTO ======= */
.contact {
  background-color: #e0f4e0;
  color: #244e33;
  padding: 100px 20px;
}
.container-contact {
  display: flex;
}
.contact-text,
.form {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.contact h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #ffcc70;
  margin: 10px;
  border-radius: 2px;
}

.contact p {
  font-size: 1.1rem;
}
.container-contact {
  margin-top: 50px;
}
/* INFORMACIÓN DE CONTACTO */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}
.info-item p {
  display: flex;
  flex-direction: column;
  justify-content: start;

  align-items: start;
}

.info-item i {
  font-size: 1.5rem;
  color: #ffcc70;
}
.info-item strong {
  color: #388e3c;
}
/* FORMULARIO DE CONTACTO */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  outline: none;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  padding: 12px;
  background-color: #ffcc70;
  color: #2c6b2f;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffb347;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.info-item i {
  font-size: 1.5rem;
  color: #ffcc70;
  transition: transform 0.3s ease-in-out;
}

.info-item:hover i {
  transform: scale(1.2);
}
.btn-contact {
  display: inline-block;
  background-color: #ffcc70;
  color: #2c6b2f;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-contact:hover {
  background-color: #ffb347;
  transform: scale(1.05);
}

.contact-button-container {
  margin-top: 20px;
  text-align: center;
}

/* privacy */

.privacy-policy {
  background-color: #f5f5f5;
  padding: 100px 0;
  animation: fadeIn 1s ease-in-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-bottom: 20px;
  text-align: center;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-top: 40px;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.privacy-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-left: 20px;
}

.privacy-list li {
  margin-bottom: 10px;
}

.final-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-top: 30px;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* terms */

.terms-conditions {
  background-color: #f4f4f4;
  padding: 100px 0;
  animation: fadeIn 1s ease-in-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-bottom: 20px;
  text-align: center;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-top: 40px;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.terms-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-left: 20px;
}

.terms-list li {
  margin-bottom: 10px;
}

.final-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-top: 30px;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* cookies */

.cookies-policy {
  padding: 100px 0;
  font-size: 1rem;
  color: #333;
}
.cookies-policy p {
  color: #333 !important;
}
h2.section-title {
  text-align: center;
  font-size: 2rem;
  color: #2c6b2f;
  margin-bottom: 20px;
}

h3.subsection-title {
  color: #2c6b2f;
  font-size: 1.5rem;
  margin-top: 30px;
}

ul {
  padding-left: 20px;
}

.cookies-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.category-item {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-item h4 {
  color: #2c6b2f;
  font-size: 1.2rem;
}

p,
ul {
  line-height: 1.6;
}

p {
  margin-bottom: 15px;
}

footer a {
  color: #f4a300;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* cookies */

/* Стиль для блоку куків */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  border-top: 3px solid #4caf50; /* Accent border */
}

.cookie-content p {
  margin: 0;
  padding-bottom: 1rem;
}

.cookie-content a {
  color: #4caf50;
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cookie-buttons button {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #45a049;
}

.cookie-decline {
  background-color: #f44336;
}

.cookie-decline:hover {
  background-color: #e53935;
}

@media (max-width: 768px) {
  .cookie-consent {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .cookie-buttons button {
    padding: 0.7rem 1.5rem;
  }
}

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

/* General Styling */

.hero {
  position: relative;
  height: 100vh;
  background-image: url("./img/hero.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e0e0e0;
}
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  text-decoration: none;
  background-color: #ffb400;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e6a200;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background-color: #ffffff22;
}

/* about */

.about {
  background: #f5f5f5;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-text {
  flex: 1;
  padding: 2rem;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features {
  padding: 4rem 2rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.features-container {
  max-width: 900px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.features-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  color: #444;
  display: grid;
  gap: 1rem;
  line-height: 1.6;
}

.features-list li {
  background: #f7f7f7;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.features-list li i {
  color: #ffb400;
  margin-right: 0.75rem;
  font-size: 1.25rem;
  vertical-align: middle;
}

.services {
  background: #f5f5f5;
  padding: 4rem 2rem;
}
.services-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}
.services-container {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.service-item {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex-basis: 22%;
  min-width: 250px;
  transition: transform 0.3s ease;
}

.service-item i {
  font-size: 2.5rem;
  color: #ffb400;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

.service-item:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    flex-basis: auto;
    width: 80%;
    margin-bottom: 1.5rem;
  }
}

.how-we-work {
  padding: 5rem 2rem;
  background-color: #f0f0f0;
}

.how-we-work-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.text-content {
  flex-basis: 45%;
}

.text-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}

.text-content ul {
  list-style: none;
  padding: 0;
}

.text-content ul li {
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-content ul li:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.text-content ul li i {
  font-size: 2.5rem;
  color: #ffb400;
  margin-bottom: 1rem;
}

.text-content ul li h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.text-content ul li p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.image-content {
  flex-basis: 45%;
}

.image-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .how-we-work-container {
    flex-direction: column;
    align-items: center;
  }

  .text-content {
    width: 80%;
    margin-bottom: 2rem;
  }

  .image-content {
    width: 80%;
  }
}
.contacts {
  background-color: #f9f9f9;
}
.contacts-container {
  padding: 10rem 2rem;

  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-info {
  flex-basis: 40%;
}

.contact-info h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0;
}

.contact-form {
  flex-basis: 50%;
}

.contact-form h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.contact-form label {
  font-size: 1rem;
  color: #555;
  display: block;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #ffb400;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background-color 0.3s;
}

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

.consultation-button {
  flex-basis: 100%;
  margin-top: 2rem;
}

.consultation-button button {
  background-color: #4caf50;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.consultation-button button:hover {
  background-color: #45a049;
}

@media (max-width: 768px) {
  .contacts {
    flex-direction: column;
    align-items: center;
  }

  /* .contact-info,
  .contact-form {
    width: 80%;
  } */

  .consultation-button button {
    width: 100%;
  }
}

.reviews {
  padding: 5rem 2rem;
  background-color: #f0f0f0;
  text-align: center;
}
.reviews-container {
  display: flex;
  gap: 50px;
}
.reviews h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
}

.review {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.review-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars {
  font-size: 1.5rem;
  color: #ffb400;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.stars i {
  margin-right: 0.2rem;
}

.review-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 1rem;
  color: #777;
}

@media (max-width: 768px) {
  .reviews {
    padding: 3rem 1rem;
  }

  .review {
    margin: 0 auto;
  }
}

/* about page */

.about-us {
  background-color: #f7f7f7;
  padding: 5rem 2rem;
}

.about-us .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  padding-right: 2rem;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .about-us .container {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    margin-bottom: 2rem;
    text-align: center;
  }

  .about-image img {
    max-width: 80%;
  }
  .reviews-container {
    flex-direction: column;
  }
}

.mission {
  background-color: #e0f7fa;
  padding: 5rem 2rem;
}

.mission .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-text {
  flex: 1;
  padding-right: 2rem;
}

.mission-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.mission-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-image {
  flex: 1;
  text-align: center;
}

.mission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .mission .container {
    flex-direction: column;
    align-items: center;
  }

  .mission-text {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .mission-image img {
    max-width: 80%;
  }
}

.history {
  background-color: #f0f4f8;
  padding: 5rem 2rem;
}

.history .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.history-text {
  flex: 1;
  padding-right: 2rem;
}

.history-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.history-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.history-image {
  flex: 1;
  text-align: center;
}

.history-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .history .container {
    flex-direction: column;
    align-items: center;
  }

  .history-text {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .history-image img {
    max-width: 80%;
  }
}

.values {
  background-color: #f9fafb;
  padding: 5rem 2rem;
}

.values .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .values .container {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .value-item {
    margin-bottom: 2rem;
  }
}

.achievements {
  background-color: #f4f8fb;
  padding: 6rem 2rem;
}

.achievements .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.achievement-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.achievement-item h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 1rem;
}

.achievement-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.achievement-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .achievements .container {
    grid-template-columns: 1fr;
  }

  .achievement-item {
    margin-bottom: 2rem;
  }
}

/* Sección de logros */
#achievements {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

#achievements h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 40px;
}

/* Estilos para la lista de logros */
.achievement-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.achievement-item {
  background-color: #e9f7fd;
  border: 1px solid #007bff;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: scale(1.05);
}

/* Iconos */
.achievement-item i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

/* Texto */
.achievement-item p {
  font-size: 1rem;
  color: #333;
}

.achievement-item strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  .achievement-list {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-menu {
    flex-direction: column;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-text h2 {
    font-size: 2rem;
  }
  .contact-form {
    flex-basis: 100%;
  }
  .about-image {
    justify-content: center;
  }
}
