/* Reset and Base Styles */
:root {
  --primary-color: #3182ce;
  --primary-dark: #2c5282;
  --primary-light: #4299e1;
  --secondary-color: #38b2ac;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --gray-color: #a0aec0;
  --danger-color: #e53e3e;
  --success-color: #48bb78;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #ffffff;
}

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-heading);
}

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

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

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

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--gray-color);
  color: var(--dark-color);
}

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

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
}

.main-nav li {
  margin-left: 1.5rem;
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  font-family: var(--font-heading);
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover:after, 
.main-nav a.active:after {
  width: 100%;
}

.date-time {
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: #f0f9ff;
  background-image: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #4a5568;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 1.5rem;
  background-color: #ebf8ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Calculator Section */
.calculator {
  padding: 5rem 0;
  background-color: #f7fafc;
}

.calculator h2, 
.calculator p {
  text-align: center;
}

.calculator p {
  margin-bottom: 2rem;
}

.calculator-form {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.calculator-result {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: #ebf8ff;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.calculator-result h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.calculator-result p {
  text-align: left;
  margin-bottom: 0.5rem;
}

.calculator-result span {
  font-weight: 700;
  color: var(--primary-color);
}

/* Recent Posts Section */
.recent-posts {
  padding: 5rem 0;
  background-color: white;
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.post-card {
  background: 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 20px rgba(0, 0, 0, 0.1);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 1.5rem;
}

.post-date {
  display: block;
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  color: var(--primary-color);
}

.read-more:hover {
  color: var(--primary-dark);
}

.view-all {
  margin-top: 3rem;
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
  max-width: 350px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

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

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

/* Footer */
footer {
  background-color: #2d3748;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
}

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

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

.footer-logo p {
  opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links ul li a {
  color: #e2e8f0;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  opacity: 1;
  color: white;
}

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

.footer-contact svg {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  color: var(--primary-light);
}

.footer-contact a {
  color: #e2e8f0;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-contact a:hover {
  opacity: 1;
  color: white;
}

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

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

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

.social-icons svg {
  width: 20px;
  height: 20px;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.cookie-more {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-more a {
  text-decoration: underline;
}

/* Blog Styles */
.page-header {
  background-color: #f0f9ff;
  padding: 4rem 0;
  text-align: center;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.blog-post .post-image {
  flex: 0 0 35%;
  height: auto;
}

.blog-post .post-content {
  flex: 1;
  padding: 2rem;
}

.blog-post .post-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.newsletter {
  padding: 5rem 0;
  background-color: #f7fafc;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Post Styles */
.post-header {
  position: relative;
  padding: 8rem 0;
  color: white;
  background-size: cover;
  background-position: center;
}

.post-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.post-header .container {
  position: relative;
  z-index: 2;
}

.post-meta {
  margin-bottom: 1.5rem;
}

.post-meta span {
  margin-right: 1.5rem;
  opacity: 0.9;
}

.post-header h1 {
  color: white;
  font-size: 2.5rem;
  max-width: 800px;
}

.post-content {
  padding: 4rem 0;
}

.post-content .container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
}

.post-body {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.post-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
}

.post-body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-body h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-body ul, 
.post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-body ul li, 
.post-body ol li {
  margin-bottom: 0.5rem;
}

.post-body ul {
  list-style-type: disc;
}

.post-body ol {
  list-style-type: decimal;
}

.post-callout {
  background-color: #ebf8ff;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--primary-color);
}

.post-callout h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.post-callout p {
  margin-bottom: 0;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, 
.comparison-table td {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.comparison-table th {
  background-color: #f7fafc;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.post-tags {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

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

.post-tags a {
  display: inline-block;
  background-color: #f0f9ff;
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.post-sidebar {
  align-self: start;
}

.author-box, 
.related-posts, 
.newsletter-box {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.related-posts ul {
  list-style: none;
  padding: 0;
}

.related-posts li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.related-posts li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.newsletter-box input {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
}

.share-post {
  background-color: #f7fafc;
  padding: 2rem 0;
}

.share-post h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.social-share {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-share a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  color: white;
  font-weight: 500;
}

.social-share svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.social-share .facebook {
  background-color: #3b5998;
}

.social-share .twitter {
  background-color: #1da1f2;
}

.social-share .linkedin {
  background-color: #0077b5;
}

.social-share .email {
  background-color: #777777;
}

.more-posts {
  padding: 4rem 0;
}

.more-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* About Page Styles */
.about-us {
  padding: 4rem 0;
}

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

.about-values {
  margin-bottom: 4rem;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  margin-bottom: 1.5rem;
  background-color: #ebf8ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary-color);
}

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

.team-section h2, 
.team-intro {
  text-align: center;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

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

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

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

.team-member h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

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

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
}

.team-member .social-links {
  margin-bottom: 1.5rem;
}

.team-member .social-icons {
  justify-content: center;
}

.our-approach {
  background-color: #f7fafc;
  padding: 4rem 0;
  margin: 0 -1.5rem;
}

.our-approach h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.approach-text ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.approach-text li {
  margin-bottom: 0.75rem;
}

.approach-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info, 
.contact-form-container {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
}

.contact-info h2, 
.contact-form-container h2 {
  margin-bottom: 1.5rem;
}

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

.contact-details {
  margin-bottom: 2rem;
}

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

.contact-icon {
  margin-right: 1rem;
  flex: 0 0 40px;
  height: 40px;
  background-color: #ebf8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 0;
}

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

.contact-form input, 
.contact-form textarea, 
.contact-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-body);
}

.contact-form textarea {
  resize: vertical;
}

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

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

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

.map-section {
  padding: 4rem 0;
  background-color: #f7fafc;
}

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

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

.faq-section {
  padding: 4rem 0;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background-color: white;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  padding: 1rem;
}

.thank-you-message svg {
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .post-content .container {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .approach-content {
    grid-template-columns: 1fr;
  }
  
  .approach-image {
    order: -1;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    text-align: center;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .blog-post .post-image {
    height: 200px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  .social-share {
    flex-wrap: wrap;
  }
  
  .social-share a {
    flex: 1 0 calc(50% - 0.5rem);
    justify-content: center;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .main-nav {
    width: 100%;
    justify-content: space-around;
  }
  
  .main-nav li {
    margin-left: 0;
  }
  
  .date-time {
    margin-top: 0.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .post-header {
    padding: 6rem 0;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
