/* Base Styles */
:root {
  --primary-color: #0d47a1;
  --secondary-color: #5e92f3;
  --accent-color: #ffc107;
  --dark-color: #263238;
  --light-color: #f5f5f5;
  --text-color: #333;
  --light-text-color: #6c757d;
  --success-color: #4caf50;
  --danger-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  --white-color: #ffffff;
  --gray-color: #e9ecef;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --container-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1rem;
}

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

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

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

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

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

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

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

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

.center {
  text-align: center;
}

/* Header & Navigation */
header {
  background-color: var(--white-color);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 50px;
}

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-weight: 600;
  color: var(--dark-color);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Hero Section */
.hero {
  background-color: var(--light-color);
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--white-color);
  opacity: 0.9;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--white-color);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-box {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.feature-box .icon svg {
  width: 30px;
  height: 30px;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Latest Posts Section */
.latest-posts {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

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

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

.post h3, .post h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.25rem;
}

.post p {
  padding: 0 1rem;
  color: var(--light-text-color);
}

.post .read-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.post .read-more:hover {
  border-bottom-color: var(--primary-color);
}

.latest-posts .center {
  margin-top: 3rem;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
}

.newsletter h2 {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

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

.newsletter button:hover {
  background-color: var(--warning-color);
}

/* Page Header */
.page-header {
  background-color: var(--light-color);
  padding: 3rem 0;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/page-header.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.page-header h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white-color);
  opacity: 0.9;
}

/* Blog Content */
.blog-content {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-post {
  margin-bottom: 2rem;
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post:hover .blog-image img {
  transform: scale(1.05);
}

.blog-info {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  color: var(--light-text-color);
  font-size: 0.9rem;
}

.blog-post h2 {
  padding: 0 1rem;
  font-size: 1.5rem;
}

.blog-post p {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

/* Blog Single */
.blog-single {
  padding: 5rem 0;
}

.blog-header {
  margin-bottom: 2rem;
}

.blog-meta {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  color: var(--light-text-color);
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.blog-header h2 {
  font-size: 1.5rem;
  color: var(--light-text-color);
  margin-bottom: 1rem;
}

.featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

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

.blog-content h3 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-content h4 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content h5 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content p, .blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-tags {
  margin: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.blog-tags span {
  font-weight: 600;
  color: var(--dark-color);
}

.blog-tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  color: var(--dark-color);
  font-size: 0.9rem;
}

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

.share-post {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.share-post span {
  font-weight: 600;
  color: var(--dark-color);
}

.share-post a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
}

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

.share-post a:hover svg {
  fill: var(--white-color);
}

.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.related-posts .posts-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* About Content */
.about-content {
  padding: 5rem 0;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.about-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.mission, .vision {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
}

.mission h3, .vision h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.our-services {
  margin-bottom: 4rem;
}

.our-services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service h3 {
  margin-bottom: 1rem;
}

.our-team {
  margin-bottom: 4rem;
}

.our-team h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

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

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

.team-member:hover {
  transform: translateY(-10px);
}

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

.team-member h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.5rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member p:last-of-type {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.social-links a:hover svg {
  fill: var(--white-color);
}

.testimonials {
  margin-bottom: 4rem;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  position: relative;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
}

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

.author-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--light-text-color);
  font-size: 0.9rem;
}

/* Contact Content */
.contact-content {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.contact-info h2, .contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info p, .contact-form p {
  margin-bottom: 2rem;
}

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

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-content p, .info-content a {
  margin-bottom: 0;
  color: var(--light-text-color);
}

.social-contact {
  margin-top: 3rem;
}

.social-contact h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
}

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

.social-icons a:hover svg {
  fill: var(--white-color);
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin-right: 0.75rem;
}

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

.map-section {
  padding: 2rem 0 5rem;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.faq-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.faq-item {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: var(--white-color);
  margin: 15% auto;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.check-icon {
  width: 60px;
  height: 60px;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.thank-you-message h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
}

.modal-close-btn {
  display: inline-block;
}

/* Interesting Facts Section */
.interesting-facts {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.interesting-facts h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fact {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.fact-icon svg {
  width: 24px;
  height: 24px;
}

.fact p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 5rem 0 2rem;
}

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

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: var(--white-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-links ul li a {
  color: var(--gray-color);
}

.footer-links ul li a:hover {
  color: var(--white-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  color: var(--gray-color);
  margin-bottom: 0.75rem;
}

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

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-social .social-icons a svg {
  fill: var(--white-color);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.legal-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.legal-links a {
  color: var(--gray-color);
}

.legal-links a:hover {
  color: var(--white-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 1.5rem;
  z-index: 999;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-content a {
  color: var(--accent-color);
  margin-top: 0.5rem;
  display: inline-block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-header h1 {
    font-size: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features .container,
  .posts-grid,
  .blog-grid,
  .services-grid,
  .team-grid,
  .testimonial-slider,
  .facts-container {
    grid-template-columns: 1fr;
  }
  
  .newsletter .form-group {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: 0.5rem;
  }
  
  .newsletter button {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    width: 100%;
  }
  
  .blog-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .blog-header h1 {
    font-size: 1.8rem;
  }
}
