/* General Styles */
:root {
  --primary-color: #5e9b51;
  --secondary-color: #f8b042;
  --text-color: #333333;
  --light-text: #777777;
  --bg-color: #ffffff;
  --light-bg: #f7f7f7;
  --border-color: #e5e5e5;
  --hover-color: #4a7c41;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

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

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

ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

/* Header & Navigation */
header {
  background-color: var(--bg-color);
  padding: 20px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

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

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

/* Hero Section */
.hero {
  background-color: var(--light-bg);
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('images/7.jpg');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

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

/* Featured Posts Section */
.featured-posts, .latest-posts {
  padding: 60px 0;
}

.featured-posts h2, .latest-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.featured-card h3, .post-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.featured-card p, .post-card p {
  padding: 0 20px;
  color: var(--light-text);
}

.featured-card a, .post-card a {
  display: inline-block;
  margin: 10px 20px 20px;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--light-bg);
  padding: 60px 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 15px;
}

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

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

.newsletter input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  border: none;
  padding: 0 25px;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #ecf0f1;
}

.footer-links h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ecf0f1;
}

.footer-contact .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  fill: currentColor;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

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

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #ecf0f1;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px 0;
  z-index: 1001;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0 20px 10px 0;
  max-width: 600px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

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

/* Blog Page Styles */
.page-header {
  background-color: var(--light-bg);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.blog-filters {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.search-bar {
  display: flex;
  max-width: 400px;
  width: 100%;
}

.search-bar input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-bar button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 15px;
  cursor: pointer;
}

.search-bar button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.category-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filters span {
  font-weight: 600;
}

.filter-btn {
  padding: 8px 15px;
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

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

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

.blog-image {
  flex: 1;
}

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

.blog-text {
  padding: 25px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--light-text);
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta .icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  fill: currentColor;
}

.blog-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-text p {
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.page-number {
  color: var(--light-text);
}

.page-buttons {
  display: flex;
  gap: 5px;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.page-btn:hover, .page-btn.active {
  background-color: var(--primary-color);
  color: white;
}

/* Individual Post Page Styles */
.post-content {
  margin: 40px 0 60px;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
}

.post-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--light-text);
}

.post-meta span {
  display: flex;
  align-items: center;
}

.post-meta .icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  fill: currentColor;
}

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.post-excerpt {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--light-text);
}

.post-featured-image {
  margin-bottom: 40px;
}

.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
}

.post-section {
  margin-bottom: 40px;
}

.post-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.materials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: var(--border-radius);
}

.step {
  margin-bottom: 30px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step-image {
  margin: 20px 0;
}

.tips-list li {
  margin-bottom: 15px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tags-label {
  font-weight: 600;
  margin-right: 10px;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--light-bg);
  border-radius: 30px;
  margin: 5px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.author-bio {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px auto;
  max-width: 800px;
}

.author-image {
  flex-shrink: 0;
}

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

.author-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--light-text);
}

.author-info h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 15px;
}

.author-info .social-icons {
  margin-top: 0;
}

.author-info .social-icons a {
  background-color: rgba(0, 0, 0, 0.1);
}

.comments-section {
  max-width: 800px;
  margin: 60px auto;
}

.comments-section h2 {
  margin-bottom: 30px;
}

.comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.comment.reply {
  margin-left: 50px;
  margin-top: -20px;
}

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

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header h4 {
  margin-bottom: 0;
}

.comment-date {
  font-size: 0.9rem;
  color: var(--light-text);
}

.comment-actions {
  margin-top: 10px;
}

.reply-link {
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
}

.leave-comment {
  margin-top: 50px;
}

.leave-comment h3 {
  margin-bottom: 20px;
}

.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

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

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

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
}

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

.related-posts {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.related-post h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
}

.related-post p {
  padding: 0 20px;
  color: var(--light-text);
  font-size: 0.95rem;
}

.related-post a {
  display: inline-block;
  margin: 10px 20px 20px;
}

/* About Page Styles */
.about-story {
  padding: 60px 0;
}

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

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

.about-text h2 {
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
}

.our-values {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.our-values h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.value-icon {
  margin-bottom: 20px;
}

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

.value-card h3 {
  margin-bottom: 15px;
}

.team-section {
  padding: 60px 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.team-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

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

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

.team-card h3 {
  margin: 20px 20px 5px;
}

.team-card p {
  padding: 0 20px;
  margin-bottom: 15px;
}

.team-card p:nth-of-type(1) {
  font-weight: 600;
  color: var(--primary-color);
}

.team-card .social-icons {
  justify-content: center;
  margin: 15px 0 20px;
}

.join-team {
  padding: 60px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
}

.join-team h2 {
  color: white;
  margin-bottom: 20px;
}

.join-team p {
  max-width: 700px;
  margin: 0 auto 30px;
}

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

.join-team .btn:hover {
  background-color: transparent;
  color: white;
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 0;
}

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

.contact-info h2 {
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

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

.info-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}

.info-text h3 {
  margin-bottom: 5px;
}

.social-connect h3 {
  margin-bottom: 15px;
}

.contact-form h2 {
  margin-bottom: 30px;
}

.map-section {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-section {
  padding: 60px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
}

.faq-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

.modal.show {
  display: flex;
}

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

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

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

.success-icon {
  width: 60px;
  height: 60px;
  fill: var(--primary-color);
  margin: 0 auto 20px;
}

/* Project Specific Styles */
.project-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.project-steps {
  margin-top: 30px;
}

.project-description {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.craft-project {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.age-range, .skill-level, .time-needed {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .featured-posts, .latest-posts {
    padding: 40px 0;
  }
  
  .blog-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .search-bar {
    width: 100%;
    max-width: none;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .comment {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .comment.reply {
    margin-left: 0;
  }
  
  .comment-header {
    flex-direction: column;
    gap: 5px;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
  }
  
  .about-content, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    background-color: var(--bg-color);
    padding: 20px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    display: none;
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom p:first-child {
    margin-bottom: 10px;
  }
}
