/* Base Styles */
:root {
  --primary-color: #a67c52;
  --primary-light: #d4b594;
  --primary-dark: #7e5f3e;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
  --dark-bg: #2c3e50;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --border-color: #ddd;
  --success-color: #2ecc71;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

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

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

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

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

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

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

button, .btn {
  cursor: pointer;
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}

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

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

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

.btn-secondary:hover {
  background-color: #1a252f;
  color: var(--text-white);
}

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

.btn-accent:hover {
  background-color: #c0392b;
  color: var(--text-white);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  border-radius: 50%;
}

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

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

nav ul li a {
  color: var(--secondary-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  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);
}

.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.mobile-nav-toggle span:nth-child(1) {
  top: 0px;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 8px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 16px;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Features Section */
.features {
  background-color: #fff;
}

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

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: #fff;
}

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

.feature-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

/* Expert Interview Section */
.expert-interview {
  background-color: var(--light-bg);
}

.interview-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.expert-image {
  flex: 0 0 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.interview-text {
  flex: 1;
}

.expert-intro {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
}

.interview-qa .question {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.interview-qa .answer {
  margin-bottom: 1.5rem;
}

/* Recent Posts Section */
.recent-posts {
  background-color: #fff;
}

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

.view-all {
  font-weight: 500;
  color: var(--primary-color);
}

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

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

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

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

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

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

.post-content {
  padding: 20px;
}

.post-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.post-content h3 a {
  color: var(--secondary-color);
}

.post-content h3 a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
}

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

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

/* Testimonials Section */
.testimonials {
  background-color: var(--light-bg);
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial {
  padding: 0 10px;
}

.testimonial-content {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.client-details h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

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

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

.cta h2 {
  color: var(--text-white);
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.current-time {
  margin-top: 30px;
  font-size: 1.1rem;
}

.time-display {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: var(--border-radius);
  font-family: monospace;
}

.time-display.large {
  font-size: 1.5rem;
  padding: 15px 25px;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--text-white);
  padding: 70px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-col h3 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
}

.footer-col h3:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 10px;
}

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

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

.footer-col ul li a {
  color: #ccc;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.company-reg {
  font-size: 0.9rem;
  opacity: 0.7;
}

address p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

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

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

.newsletter h4 {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
}

.newsletter-form .btn {
  padding: 10px 15px;
}

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

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-links li a {
  color: #ccc;
  transition: var(--transition);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--text-white);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
  bottom: 0;
}

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

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 300px;
}

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

.cookie-buttons button {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-customize {
  background-color: transparent;
  border: 1px solid var(--text-white);
  color: var(--text-white);
}

.btn-decline {
  background-color: transparent;
  color: var(--text-white);
}

.cookie-buttons a {
  color: var(--primary-light);
  margin-left: 10px;
  align-self: center;
}

/* Page Header */
.page-header {
  background-color: var(--light-bg);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

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

.blog-image {
  height: 300px;
  overflow: hidden;
}

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

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

.blog-text {
  padding: 30px;
  flex: 1;
}

.blog-text h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.blog-text h2 a {
  color: var(--secondary-color);
}

.blog-text h2 a:hover {
  color: var(--primary-color);
}

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

/* Blog Post Page */
.blog-post {
  background-color: #fff;
  padding: 60px 0;
}

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

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

.post-featured-image {
  margin-bottom: 40px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.post-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--text-light);
}

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.post-content h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.post-image-inline {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-tags {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.post-tags a {
  background-color: var(--light-bg);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

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

.post-share {
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-share span {
  font-weight: 600;
}

.social-share {
  display: flex;
  gap: 10px;
}

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

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.post-nav-prev, .post-nav-next {
  max-width: 48%;
}

.post-nav-prev a, .post-nav-next a {
  display: block;
  color: var(--text-color);
}

.post-nav-prev a:hover, .post-nav-next a:hover {
  color: var(--primary-color);
}

.post-nav-prev span, .post-nav-next span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.post-nav-prev h4, .post-nav-next h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

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

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

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

/* Services Page */
.services-intro {
  padding-bottom: 40px;
}

.services-intro .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.intro-content {
  flex: 1;
}

.intro-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
  transition: var(--transition);
}

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

.service-image {
  height: 300px;
  overflow: hidden;
}

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

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

.service-content {
  padding: 30px;
  flex: 1;
}

.service-content h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.service-description {
  margin-bottom: 20px;
}

.service-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.detail h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.service-packages {
  background-color: var(--light-bg);
}

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

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

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

.package-header {
  background-color: var(--secondary-color);
  color: var(--text-white);
  padding: 20px;
  text-align: center;
  position: relative;
}

.package-header h3 {
  color: var(--text-white);
  margin-bottom: 10px;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.package-value {
  font-size: 0.9rem;
  opacity: 0.8;
}

.featured-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--text-white);
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-card.featured {
  transform: scale(1.05);
}

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

.package-content {
  padding: 20px;
}

.package-content ul {
  margin-bottom: 20px;
}

.package-content li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.package-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
}

.package-description {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

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

.faq-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

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

/* About Page */
.about-story .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.story-content {
  flex: 1;
}

.story-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.approach-card {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.approach-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

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

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

.team-member {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-member h3 {
  margin: 20px 20px 5px;
  font-size: 1.4rem;
}

.team-member p {
  margin: 0 20px 15px;
  color: var(--text-light);
}

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

.team-member .social-links {
  margin: 0 20px 20px;
}

.team-member .social-links a {
  background-color: var(--light-bg);
  color: var(--text-color);
}

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

.values-section {
  background-color: var(--light-bg);
}

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

.value-card {
  background-color: #fff;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

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

.credentials-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.credentials-text {
  flex: 1;
}

.credentials-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.contact-info p {
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-bg);
  border-radius: 50%;
  color: var(--primary-color);
}

.method-details h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.method-details p {
  margin-bottom: 5px;
}

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

.current-time-block {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
}

.current-time-block h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(166, 124, 82, 0.2);
}

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

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

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

.map-container {
  margin-top: 30px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-contact {
  background-color: var(--light-bg);
}

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

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  position: relative;
  box-shadow: var(--box-shadow);
  transform: translateY(50px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
}

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

.check-icon {
  color: var(--success-color);
  margin-bottom: 20px;
}

.thank-you-content h2 {
  margin-bottom: 15px;
}

.reply-time {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}

.close-btn {
  padding: 10px 25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .services-intro .container,
  .about-story .container,
  .credentials-content {
    flex-direction: column;
  }
  
  .intro-image,
  .story-image,
  .credentials-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    order: 2;
    text-align: center;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .interview-content {
    flex-direction: column;
  }
  
  .expert-image {
    margin-bottom: 30px;
  }
  
  .service-details {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .post-nav-prev, .post-nav-next {
    max-width: 100%;
  }
  
  .post-nav-next {
    text-align: left;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
