/* Base Styles */
:root {
  --primary-color: #b23a48;
  --secondary-color: #4c956c;
  --accent-color: #d68c45;
  --dark-color: #2c3532;
  --light-color: #faf9f9;
  --text-color: #333333;
  --light-text: #777777;
  --link-color: #2d6187;
  --header-font: 'Noto Serif JP', serif;
  --body-font: 'Noto Sans JP', sans-serif;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h2:hover, h3:hover, h4:hover {
  color: var(--primary-color);
  transition: var(--transition);
}

p {
  margin-bottom: 1rem;
}

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

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

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

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

/* Header & Navigation */
header {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
  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: none;
  padding: 0;
  margin: 0;
}

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

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

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

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

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.9rem;
  border: none;
}

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

.btn-primary:hover {
  background-color: #9c2e3a;
  color: #fff;
  transform: translateY(-3px);
}

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

.btn-secondary:hover {
  background-color: #3a7355;
  color: #fff;
  transform: translateY(-3px);
}

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

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

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

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

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

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

.post-card h3 {
  padding: 1.2rem 1.2rem 0.5rem;
  font-size: 1.3rem;
}

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

.read-more {
  display: inline-block;
  margin: 0.5rem 1.2rem 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Daily Inspiration */
.daily-inspiration {
  padding: 4rem 0;
  background-color: #f8f7f7;
}

.daily-inspiration h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.inspiration-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.inspiration-content blockquote {
  font-family: var(--header-font);
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--dark-color);
}

.inspiration-content p {
  color: var(--light-text);
  margin-bottom: 2rem;
}

.inspiration-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

/* Services Preview */
.services-preview {
  padding: 5rem 0;
  background-color: #fff;
}

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

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

.service-card {
  background-color: #f8f7f7;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

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

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

.service-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.2rem;
}

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

.services-preview .btn-secondary {
  display: block;
  width: max-content;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

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

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

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 1.2rem;
}

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

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

.footer-links ul li a,
.footer-contact address a {
  color: #bbb;
}

.footer-links ul li a:hover,
.footer-contact address a:hover {
  color: #fff;
}

.footer-contact address {
  font-style: normal;
  color: #bbb;
  line-height: 1.8;
}

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

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

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

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

.copyright {
  color: #bbb;
}

.policy-links {
  display: flex;
  gap: 1.5rem;
}

.policy-links a {
  color: #bbb;
  font-size: 0.9rem;
}

.policy-links a:hover {
  color: #fff;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  padding: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

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

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

.btn-cookie {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-cookie.accept {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-cookie.customize {
  background-color: #eee;
  color: var(--dark-color);
}

.btn-cookie.decline {
  background-color: transparent;
  color: var(--light-text);
  border: 1px solid #ddd;
}

.btn-cookie:hover {
  transform: translateY(-2px);
}

.cookie-content a {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Page Banner */
.page-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/9.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.page-banner p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* About Page */
.about-story {
  padding: 5rem 0;
  background-color: #fff;
}

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

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

.about-text h2 {
  margin-bottom: 1.5rem;
}

.our-philosophy {
  padding: 5rem 0;
  background-color: #f8f7f7;
}

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

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

.philosophy-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.philosophy-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(178, 58, 72, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

.team-members {
  padding: 5rem 0;
  background-color: #fff;
}

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

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

.team-card {
  background-color: #f8f7f7;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

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

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

.team-card h3 {
  margin: 1rem 0 0.5rem;
}

.team-card p {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

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

.certification {
  padding: 5rem 0;
  background-color: #f8f7f7;
}

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

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

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

/* Blog Page */
.blog-content {
  padding: 5rem 0;
  background-color: #fff;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

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

.blog-text {
  padding: 1.5rem 2rem 1.5rem 0;
}

.blog-text h2 {
  margin-bottom: 0.5rem;
}

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

.subscribe {
  padding: 5rem 0;
  background-color: #f8f7f7;
}

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

.subscribe-form {
  display: flex;
  margin-top: 2rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.subscribe-form input {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 50px 0 0 50px;
  font-family: var(--body-font);
  outline: none;
}

.subscribe-form button {
  border-radius: 0 50px 50px 0;
}

/* Blog Post */
.blog-post {
  padding: 5rem 0;
  background-color: #fff;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  color: var(--light-text);
}

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

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

.featured-image {
  margin-bottom: 3rem;
}

.featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

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

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-image {
  margin: 2.5rem 0;
}

.content-image img {
  width: 100%;
  border-radius: 10px;
}

.caption {
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--light-text);
}

.quote-block {
  margin: 3rem 0;
  padding: 2rem;
  background-color: #f8f7f7;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 10px 10px 0;
}

.quote-block blockquote {
  font-size: 1.3rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1rem;
  font-family: var(--header-font);
  color: var(--dark-color);
}

.quote-author {
  text-align: right;
  color: var(--light-text);
}

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

.post-tags span {
  font-weight: bold;
}

.post-tags a {
  background-color: #f0f0f0;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--light-text);
}

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

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.prev-post, .next-post {
  display: flex;
  flex-direction: column;
}

.next-post {
  text-align: right;
}

.prev-post span, .next-post span {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.related-posts {
  margin: 3rem 0;
}

.related-posts h3 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.related-card {
  background-color: #f8f7f7;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

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

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

.related-card h4 {
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Services Page */
.services-intro {
  padding: 5rem 0;
  background-color: #fff;
}

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

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

.services-list {
  padding: 3rem 0 5rem;
  background-color: #fff;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
}

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

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

.service-price {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.packages {
  padding: 5rem 0;
  background-color: #f8f7f7;
}

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

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

.package-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.package-card h3 {
  margin-bottom: 0.5rem;
}

.package-price {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.package-card ul {
  margin: 1.5rem 0;
}

.package-card .btn-primary {
  width: 100%;
  text-align: center;
}

.testimonials {
  padding: 5rem 0;
  background-color: #fff;
}

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

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.testimonial {
  min-width: 350px;
  max-width: 400px;
}

.testimonial-content {
  background-color: #f8f7f7;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

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

.client-info h4 {
  margin-bottom: 0;
}

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

.booking-cta {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/21.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

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

.cta-content p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Contact Page */
.contact-content {
  padding: 5rem 0;
  background-color: #fff;
}

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

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

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(178, 58, 72, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  flex-shrink: 0;
}

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

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

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

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

.contact-form-container {
  background-color: #f8f7f7;
  border-radius: 10px;
  padding: 2.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--body-font);
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.consent-checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.contact-form button {
  width: 100%;
  margin-top: 1rem;
}

.map-section {
  padding: 3rem 0 5rem;
  background-color: #fff;
}

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

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #f8f7f7;
  border-radius: 10px;
  overflow: hidden;
}

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

.map-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.faq-section {
  padding: 5rem 0;
  background-color: #f8f7f7;
}

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

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

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--light-text);
  margin-bottom: 0;
}

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

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  animation: modalAnimation 0.3s forwards;
}

@keyframes modalAnimation {
  to {
    transform: translateY(0);
  }
}

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

.modal-content h2 {
  margin-bottom: 1rem;
}

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

.modal-close-btn {
  width: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content,
  .certification-content,
  .intro-content,
  .service-item {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image img {
    height: 300px;
  }
  
  .blog-text {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    width: 200px;
    padding: 1rem;
    box-shadow: var(--box-shadow);
    display: none;
  }
  
  nav ul li {
    margin: 0 0 0.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .policy-links {
    justify-content: center;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .next-post {
    text-align: left;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .posts-grid,
  .services-grid,
  .philosophy-grid,
  .team-grid,
  .packages-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-cookie {
    width: 100%;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    border-radius: 50px;
    margin-bottom: 1rem;
  }
  
  .subscribe-form button {
    border-radius: 50px;
  }
}
