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

:root {
  --primary-color: #2c5f4f;
  --secondary-color: #c9945f;
  --accent-color: #d4986f;
  --text-dark: #2d2d2d;
  --text-light: #666666;
  --background-light: #f9f6f2;
  --white: #ffffff;
  --border-color: #e0dcd5;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

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

.hero-banner,
.page-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--white);
  z-index: 10;
}

.hero-title,
.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle,
.page-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.features-section,
.destinations-showcase,
.values-section {
  background-color: var(--background-light);
}

.features-grid,
.destinations-gallery,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card,
.value-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover,
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon,
.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title,
.value-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-text,
.value-description {
  color: var(--text-light);
  line-height: 1.8;
}

.destination-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.destination-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.destination-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  padding: 2rem 1.5rem 1rem;
}

.destination-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
}

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

.newsletter-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-button {
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  background-color: var(--background-light);
  transform: translateY(-2px);
}

.subscriber-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.counter-icon {
  font-size: 1.2rem;
}

.main-footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-heading {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-text {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.registration-info {
  color: #999999;
  font-size: 0.9rem;
}

.footer-links,
.contact-list {
  list-style: none;
}

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

.footer-links a {
  color: #cccccc;
  transition: color 0.3s ease;
}

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

.contact-list li {
  color: #cccccc;
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  border-top: 1px solid #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  color: #999999;
  font-size: 0.9rem;
}

.page-indicator {
  color: #999999;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.cookie-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

.reject-btn {
  background-color: #cccccc;
  color: var(--text-dark);
}

.reject-btn:hover {
  background-color: #bbbbbb;
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-paragraph {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

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

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

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

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

.team-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

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

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

.team-name {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 1.5rem 1rem 0.5rem;
}

.team-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-light);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

.posts-grid {
  display: grid;
  gap: 2rem;
}

.post-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.post-link {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
}

.post-image-wrapper {
  position: relative;
  height: 100%;
}

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

.post-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 2rem;
}

.post-title {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.post-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

.pagination-section {
  margin-top: 3rem;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.page-number {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
}

.page-number.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.contact-info-block,
.contact-form-block {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-intro {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.info-cards {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.info-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.info-title {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-detail {
  color: var(--text-light);
  line-height: 1.6;
}

.info-detail a {
  color: var(--secondary-color);
}

.info-note {
  color: #999;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

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

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

.map-iframe {
  width: 100%;
  height: 450px;
  border: none;
}

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

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
}

.modal-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.modal-message {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.modal-close-btn {
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background-color: var(--secondary-color);
}

.post-article {
  background-color: var(--white);
}

.article-header {
  position: relative;
  height: 500px;
}

.article-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.article-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 0.95rem;
}

.article-content {
  background-color: var(--background-light);
}

.article-body {
  max-width: 800px;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.article-content .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.lead-paragraph {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.9;
}

.article-body h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 2.5rem 0 1.5rem;
}

.article-body p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
  color: var(--text-light);
}

.article-image {
  width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.fact-list {
  list-style: none;
}

.fact-list li {
  padding: 0.5rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.fact-list li:last-child {
  border-bottom: none;
}

.related-posts {
  list-style: none;
}

.related-posts li {
  margin-bottom: 0.75rem;
}

.related-posts a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

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

.widget-text {
  color: var(--text-light);
  line-height: 1.7;
}

.share-text {
  color: var(--text-light);
  line-height: 1.6;
}

.post-navigation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}

.nav-link {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: var(--secondary-color);
  transform: translateX(5px);
}

.prev-post:hover {
  transform: translateX(-5px);
}

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

.intro-text {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-title,
  .page-title {
    font-size: 2rem;
  }
  
  .story-grid,
  .contact-grid,
  .article-content .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .post-link {
    grid-template-columns: 1fr;
  }
  
  .post-image-wrapper {
    height: 250px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-banner,
  .page-hero {
    height: 350px;
  }
  
  .hero-title,
  .page-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle,
  .page-subtitle {
    font-size: 1rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .article-body {
    padding: 1.5rem;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-body h2 {
    font-size: 1.5rem;
  }
}