/* Base Styles */
:root {
  --primary-color: #0d6efd;
  --primary-dark: #0a58ca;
  --secondary-color: #6c757d;
  --accent-color: #ffc107;
  --success-color: #198754;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --body-bg: #ffffff;
  --body-color: #212529;
  --header-bg: #ffffff;
  --footer-bg: #212529;
  --footer-color: #f8f9fa;
  --border-color: #dee2e6;
  --border-radius: 0.375rem;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-size-base: 1rem;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --line-height-base: 1.5;
  --container-max-width: 1200px;
  --header-height: 80px;
  --dark-theme-bg: #121212;
  --dark-theme-color: #f8f9fa;
  --dark-theme-secondary: #272727;
  --dark-theme-muted: #6c757d;
  
  /* Custom Theme Colors */
  --primary-blue: #007bff;
  --primary-indigo: #6610f2;
  --primary-purple: #6f42c1;
  --primary-pink: #e83e8c;
  --primary-red: #dc3545;
  --primary-orange: #fd7e14;
  --primary-yellow: #ffc107;
  --primary-green: #28a745;
  --primary-teal: #20c997;
  --primary-cyan: #17a2b8;
  --primary-white: #fff;
  --primary-gray: #6c757d;
  --primary-gray-dark: #343a40;
  --primary-gray-100: #f8f9fa;
  --primary-gray-200: #e9ecef;
  --primary-gray-300: #dee2e6;
  --primary-gray-400: #ced4da;
  --primary-gray-500: #adb5bd;
  --primary-gray-600: #6c757d;
  --primary-gray-700: #495057;
  --primary-gray-800: #343a40;
  --primary-gray-900: #212529;
  --primary-black: #000;
  
  /* Real Estate Theme Colors */
  --re-primary: #2c3e50;
  --re-secondary: #1abc9c;
  --re-accent: #e67e22;
  --re-light: #ecf0f1;
  --re-dark: #2c3e50;
  --re-gray: #95a5a6;
  --re-muted: #7f8c8d;
}

/* Dark Theme Variables */
body.dark-theme {
  --body-bg: var(--dark-theme-bg);
  --body-color: var(--dark-theme-color);
  --header-bg: var(--dark-theme-secondary);
  --border-color: #444;
  --re-light: #333;
  --re-dark: #f1f1f1;
  --re-gray: #ddd;
  --re-muted: #ccc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--body-color);
  background-color: var(--body-bg);
  transition: var(--transition);
}

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

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

ul, ol {
  list-style-position: inside;
  padding-left: 1rem;
}

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

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--re-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: var(--re-secondary);
  border: 1px solid var(--re-secondary);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.btn-light {
  background-color: var(--re-light);
  border-color: var(--re-light);
  color: var(--re-dark);
}

.btn-light:hover {
  background-color: var(--re-gray);
  border-color: var(--re-gray);
  color: var(--re-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--re-secondary);
  border-color: var(--re-secondary);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header and Navigation */
header {
  background-color: var(--header-bg);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

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

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
}

nav a {
  font-weight: 600;
  color: var(--re-dark);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

nav a:hover, nav a.active {
  color: var(--re-secondary);
}

nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--re-secondary);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--re-dark);
  transition: var(--transition);
}

.theme-toggle:hover {
  color: var(--re-secondary);
}

/* Hero Section */
.hero {
  background-color: var(--re-primary);
  color: white;
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

/* Featured Posts Section */
.featured-posts {
  padding: 5rem 0;
}

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

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

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

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

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

.post-content {
  padding: 1.5rem;
}

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

.post-content p {
  color: var(--re-muted);
  margin-bottom: 1.5rem;
}

.read-more {
  font-weight: 600;
  color: var(--re-secondary);
  display: inline-block;
}

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

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

/* CTA Section */
.cta {
  background-color: var(--re-secondary);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

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

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

/* Footer */
footer {
  background-color: var(--re-primary);
  color: white;
  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: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--re-gray);
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

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

.footer-links a {
  color: var(--re-gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--re-secondary);
}

.footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-contact svg {
  margin-right: 0.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.footer-social a:hover {
  background-color: var(--re-secondary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  color: var(--re-gray);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--re-primary);
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cookie-notice.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.cookie-content a {
  color: var(--re-secondary);
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-color: var(--re-primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

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

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

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--body-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  overflow: hidden;
}

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

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

.blog-text {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-text .date {
  color: var(--re-muted);
  margin-bottom: 1rem;
  display: block;
}

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

.blog-text p {
  color: var(--re-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Blog Post Styles */
.blog-post-header {
  background-color: var(--re-primary);
  color: white;
  padding: 4rem 0 3rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.post-meta span {
  color: var(--re-gray);
}

.blog-post-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--re-gray);
  font-size: 0.875rem;
}

.blog-post-content {
  padding: 5rem 0;
}

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

.post-body {
  background-color: var(--body-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
}

.post-image {
  margin-bottom: 2rem;
}

.post-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.intro-text {
  font-size: 1.25rem;
  color: var(--re-dark);
  margin-bottom: 2rem;
  font-weight: 500;
}

.post-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-body h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

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

.info-box, .property-highlight, .example-box, .disclaimer {
  background-color: var(--re-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box h4, .property-highlight h4, .example-box h4 {
  margin-top: 0;
  color: var(--re-dark);
}

.disclaimer {
  background-color: rgba(var(--re-muted-rgb), 0.1);
  font-size: 0.875rem;
}

.share-post {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.share-post p {
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.social-share a {
  color: var(--re-muted);
  transition: var(--transition);
}

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

/* Sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--body-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}

.sidebar-widget h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.author-bio .author-info {
  text-align: center;
}

.author-bio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

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

.author-bio p {
  font-size: 0.875rem;
  color: var(--re-muted);
}

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

.related-posts li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.related-posts a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.related-posts img {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.related-posts span {
  font-size: 0.875rem;
  font-weight: 600;
}

.cta-widget {
  text-align: center;
  background-color: var(--re-secondary);
  color: white;
}

.cta-widget h3 {
  color: white;
}

.cta-widget p {
  margin-bottom: 1.5rem;
}

.cta-widget .btn {
  background-color: white;
  color: var(--re-secondary);
  border-color: white;
}

.cta-widget .btn:hover {
  background-color: transparent;
  color: white;
}

/* Related Posts Section */
.related-posts-section {
  padding: 5rem 0;
  background-color: var(--re-light);
}

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

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

.related-post-card {
  background-color: var(--body-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: block;
}

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

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

.related-post-content {
  padding: 1.5rem;
}

.related-post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--re-dark);
}

.related-post-content p {
  color: var(--re-muted);
  font-size: 0.875rem;
}

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

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

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

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

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

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: var(--re-secondary);
  color: white;
  border-radius: 50%;
}

.info-text h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.social-links h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

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

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

.contact-form h2 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.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;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--body-bg);
  color: var(--body-color);
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

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

.checkbox-group a {
  color: var(--re-secondary);
}

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

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

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Page */
.about-intro {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
}

.about-image img {
  border-radius: var(--border-radius);
  width: 100%;
}

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

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

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

.team-member {
  background-color: var(--body-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  padding-bottom: 1.5rem;
}

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

.team-member h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

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

.team-member p:last-of-type {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: var(--re-muted);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.values {
  padding: 5rem 0;
}

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

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

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

.value-icon {
  margin-bottom: 1.5rem;
  color: var(--re-secondary);
}

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

.value-card p {
  color: var(--re-muted);
  font-size: 0.875rem;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--body-bg);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--re-muted);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--re-dark);
}

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

.thank-you-message svg {
  color: var(--success-color);
  margin: 0 auto 1.5rem;
}

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

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

/* Glossary Section */
.glossary {
  padding: 5rem 0;
  background-color: var(--re-light);
}

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

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

.glossary-item {
  background-color: var(--body-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.glossary-item h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--re-secondary);
}

.glossary-item p {
  font-size: 0.875rem;
  color: var(--re-muted);
  margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-content,
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .post-body {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 60px;
  }
  
  header .container {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
