/* 
* Meivelidrama - Main Stylesheet
* Version: 1.0
* Last Updated: 15.11.2023
*/

/* ========== Base Styles ========== */
:root {
  --primary-color: #4a6da7;
  --secondary-color: #dd7230;
  --tertiary-color: #8e8741;
  --light-color: #f9f9f9;
  --dark-color: #333;
  --text-color: #444;
  --heading-color: #303030;
  --footer-color: #2c3e50;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --border-radius: 6px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-main: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Raleway", "Segoe UI", Roboto, sans-serif;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul,
ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ========== Buttons ========== */
.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.6rem;
}

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

.btn-primary:hover {
  background-color: #3a5a8c;
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #c5652b;
  color: white;
}

.btn-tertiary {
  background-color: transparent;
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
}

.btn-tertiary:hover {
  background-color: var(--dark-color);
  color: white;
}

/* ========== Header & Navigation ========== */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 4rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 5rem;
  width: auto;
  margin-right: 1.5rem;
}

.logo-small {
  height: 4rem;
  width: auto;
}

#navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
}

#navbar li {
  margin-left: 3rem;
}

#navbar a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
}

#navbar a i {
  margin-right: 0.8rem;
}

#navbar a:hover,
#navbar a.active {
  color: var(--primary-color);
}

#navbar a.active {
  background-color: rgba(74, 109, 167, 0.1);
}

#decrease-font {
  background-color: var(--light-color);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

#decrease-font:hover {
  background-color: #eee;
}

/* ========== Hero Section ========== */
.hero {
  display: flex;
  align-items: center;
  padding: 8rem 4rem;
  background-color: #f0f4f8;
}

.hero-content {
  flex: 1;
  padding-right: 4rem;
}

.hero-content h2 {
  font-size: 4.2rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* ========== Featured Posts ========== */
.featured-posts {
  padding: 8rem 4rem;
  background-color: white;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 2rem;
}

/* ========== About Preview ========== */
.about-preview {
  display: flex;
  align-items: center;
  padding: 8rem 4rem;
  background-color: #f0f4f8;
}

.about-content {
  flex: 1;
  padding-right: 4rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* ========== Newsletter ========== */
.newsletter {
  padding: 6rem 4rem;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.newsletter h2,
.newsletter p {
  color: white;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.5rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--secondary-color);
}

.newsletter-form button:hover {
  background-color: #c5652b;
}

/* ========== Footer ========== */
footer {
  background-color: var(--footer-color);
  color: white;
  padding-top: 5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 4rem 4rem;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo h3 {
  color: white;
  margin: 1rem 0;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 2rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ddd;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--secondary-color);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  color: white;
  font-size: 2rem;
  margin-left: 1.5rem;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* ========== Blog Page ========== */
.blog-header {
  background-color: #f0f4f8;
  padding: 6rem 4rem;
  text-align: center;
}

.blog-header h2 {
  margin-bottom: 1.5rem;
}

.blog-header p {
  max-width: 700px;
  margin: 0 auto;
}

.blog-content {
  padding: 6rem 4rem;
}

.blog-post {
  display: flex;
  margin-bottom: 6rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.post-details {
  flex: 2;
  padding: 3rem;
}

.post-meta {
  display: flex;
  margin-bottom: 2rem;
  color: #777;
}

.post-meta span {
  margin-right: 2rem;
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 0.5rem;
}

.post-summary p:last-child {
  margin-bottom: 2rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
  margin-right: 1rem;
}

.post-tags a {
  background-color: #f0f4f8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-right: 1rem;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ========== About Page ========== */
.about-header {
  display: flex;
  align-items: center;
  padding: 8rem 4rem;
  background-color: #f0f4f8;
}

.about-header-content {
  flex: 1;
  padding-right: 4rem;
}

.about-header-image {
  flex: 1;
}

.about-header-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.our-story,
.mission-values {
  padding: 8rem 4rem;
}

.our-story {
  background-color: white;
}

.story-content,
.mission-content {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.story-text,
.mission-text {
  flex: 1;
}

.story-image,
.mission-image {
  flex: 1;
  padding: 0 2rem;
}

.story-image img,
.mission-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.mission-text ul {
  list-style-type: none;
  margin-left: 0;
}

.mission-text li {
  margin-bottom: 1.5rem;
}

.mission-text strong {
  color: var(--primary-color);
}

.team {
  padding: 8rem 4rem;
  background-color: #f0f4f8;
  text-align: center;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  margin: 2rem 0 0.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-member p {
  padding: 0 2rem 2rem;
  margin-bottom: 0;
}

.testimonials {
  padding: 8rem 4rem;
  background-color: white;
  text-align: center;
}

.testimonial-slider {
  margin-top: 4rem;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 80%;
  scroll-snap-align: start;
  padding: 0 2rem;
}

.quote {
  background-color: #f9f9f9;
  padding: 3rem;
  border-radius: var(--border-radius);
  position: relative;
  margin-bottom: 3rem;
}

.quote::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: #f9f9f9 transparent transparent;
}

.quote i:first-child {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(0, 0, 0, 0.1);
  font-size: 2.4rem;
}

.quote i:last-child {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: rgba(0, 0, 0, 0.1);
  font-size: 2.4rem;
}

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

.author img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.5rem;
}

.author-info p {
  margin-bottom: 0;
  color: #777;
}

/* ========== Contact Page ========== */
.contact-header {
  background-color: #f0f4f8;
  padding: 6rem 4rem;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem 4rem;
  background-color: white;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding-right: 4rem;
}

.contact-form-container {
  flex: 2;
  min-width: 400px;
}

.info-item {
  display: flex;
  margin-bottom: 3rem;
}

.info-item i {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-right: 2rem;
  margin-top: 0.5rem;
}

.info-item h4 {
  margin-bottom: 0.5rem;
}

.info-item p {
  margin-bottom: 0.5rem;
}

.social-media {
  margin-top: 4rem;
}

.social-media .social-icons {
  display: flex;
}

.social-media .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #f0f4f8;
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: var(--transition);
}

.social-media .social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-form,
.register-form {
  background-color: #f9f9f9;
  padding: 3rem;
  border-radius: var(--border-radius);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.required {
  color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: var(--font-main);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.4rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.map-section {
  padding: 6rem 4rem;
  background-color: #f0f4f8;
}

.map-section h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* ========== Register Page ========== */
.register-header {
  display: flex;
  align-items: center;
  padding: 8rem 4rem;
  background-color: #f0f4f8;
}

.register-header-content {
  flex: 1;
  padding-right: 4rem;
}

.register-header-image {
  flex: 1;
}

.register-header-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.register-benefits {
  padding: 8rem 4rem;
  background-color: white;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.benefit-card {
  background-color: #f9f9f9;
  padding: 3rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.benefit-card i {
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.benefit-card h4 {
  margin-bottom: 1rem;
}

.benefit-card p {
  margin-bottom: 0;
}

.register-form-container {
  padding: 8rem 4rem;
  background-color: #f0f4f8;
}

.register-form-container h3 {
  text-align: center;
  margin-bottom: 4rem;
}

.form-columns {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}

.form-column {
  flex: 1;
  min-width: 300px;
  padding: 0 1.5rem;
}

.form-help {
  font-size: 1.4rem;
  color: #777;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.checkbox-item {
  margin-bottom: 1rem;
}

.full-width {
  width: 100%;
  margin-top: 1rem;
}

.login-link {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
}

.testimonials-small {
  padding: 8rem 4rem;
  background-color: white;
}

.testimonials-small h3 {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background-color: #f9f9f9;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-card .quote {
  background-color: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.testimonial-card .quote::after {
  display: none;
}

.testimonial-card .author {
  justify-content: flex-start;
}

/* ========== Policy Pages ========== */
.policy-header {
  background-color: #f0f4f8;
  padding: 6rem 4rem;
  text-align: center;
}

.policy-header p {
  color: #777;
}

.policy-content {
  padding: 6rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 5rem;
}

.policy-section h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.policy-section h3 {
  margin-top: 3rem;
}

.contact-info-policy {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.refund-steps {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.refund-steps ol {
  margin-left: 2rem;
}

.refund-steps li {
  margin-bottom: 1.5rem;
}

/* ========== Modals ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 4rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: slideIn 0.4s;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: #777;
}

.modal-icon {
  font-size: 6rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.close-btn {
  margin-top: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* ========== Cookie Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  padding: 2rem 4rem;
  display: none;
  animation: slideUp 0.5s;
}

.cookie-content p {
  margin-bottom: 2rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-link {
  font-size: 1.4rem;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ========== Tooltip ========== */
.tooltip {
  position: absolute;
  background-color: var(--dark-color);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  max-width: 250px;
  text-align: center;
  pointer-events: none;
}

.tooltip:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: var(--dark-color) transparent transparent;
}

/* ========== Responsive Styles ========== */
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }

  .hero,
  .about-preview,
  .about-header,
  .register-header {
    flex-direction: column;
    padding: 6rem 3rem;
  }

  .hero-content,
  .about-content,
  .about-header-content,
  .register-header-content {
    padding-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }

  .featured-posts,
  .our-story,
  .mission-values,
  .team,
  .testimonials,
  .contact-header,
  .contact-container,
  .register-benefits,
  .register-form-container,
  .testimonials-small,
  .policy-content {
    padding: 6rem 3rem;
  }

  .story-content,
  .mission-content {
    flex-direction: column;
  }

  .story-text,
  .mission-text {
    margin-bottom: 4rem;
  }

  .mission-text {
    order: 2;
  }

  .mission-image {
    order: 1;
    margin-bottom: 4rem;
  }

  .contact-info {
    margin-bottom: 4rem;
    padding-right: 0;
  }

  #navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  #navbar li {
    margin: 0 1.5rem 1rem;
  }

  .blog-post {
    flex-direction: column;
  }

  .post-image {
    min-width: 100%;
    height: 300px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }

  header {
    flex-direction: column;
    padding: 1.5rem 2rem;
  }

  .logo-container {
    margin-bottom: 1.5rem;
  }

  #navbar li {
    margin: 0 1rem 1rem;
  }

  #navbar a {
    font-size: 1.4rem;
  }

  .hero,
  .about-preview,
  .about-header,
  .register-header {
    padding: 4rem 2rem;
  }

  .featured-posts,
  .our-story,
  .mission-values,
  .team,
  .testimonials,
  .contact-header,
  .contact-container,
  .register-benefits,
  .register-form-container,
  .testimonials-small,
  .policy-content {
    padding: 4rem 2rem;
  }

  .newsletter {
    padding: 4rem 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
  }

  .newsletter-form button {
    border-radius: var(--border-radius);
  }

  .footer-content {
    flex-direction: column;
    padding: 0 2rem 2rem;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    margin-bottom: 3rem;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  .footer-bottom .social-icons {
    margin-top: 1.5rem;
  }

  .social-icons a {
    margin: 0 0.75rem;
  }

  .testimonial {
    flex: 0 0 95%;
  }

  .blog-post {
    margin-bottom: 4rem;
  }

  .post-image {
    height: 250px;
  }

  .post-details {
    padding: 2rem;
  }

  .cookie-banner {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55%;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-content h2 {
    font-size: 3.2rem;
  }

  .post-image {
    height: 200px;
  }

  .modal-content {
    margin: 20% auto;
    padding: 3rem;
  }

  .team-member img {
    height: 200px;
  }

  .author img {
    width: 5rem;
    height: 5rem;
  }
}
