/* Base Styles */
:root {
  --primary-color: #4a7dff;
  --primary-dark: #3a63cc;
  --secondary-color: #ff6b4a;
  --secondary-dark: #e05a3b;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #2a3444;
  --border-color: #e1e4e8;
  --success-color: #42b983;
  --warning-color: #f4a261;
  --danger-color: #e76f51;
  --border-radius: 6px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
}

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

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

ul, ol {
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

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

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

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

.btn-accept:hover {
  background-color: #36a972;
}

.btn-customize {
  background-color: var(--text-light);
}

.btn-customize:hover {
  background-color: #555;
}

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

.btn-reject:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Header & Navigation */
header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo img {
  height: 100%;
  width: auto;
  border-radius: 0;
}

nav ul {
  display: flex;
  gap: 30px;
}

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

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

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

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

/* Hero Section */
.hero {
  background-color: var(--bg-dark);
  color: white;
  padding: 80px 0;
  background-image: linear-gradient(rgba(42, 52, 68, 0.9), rgba(42, 52, 68, 0.9)), url('../images/1.jpg');
  background-size: cover;
  background-position: center;
}

.hero .container {
  max-width: 800px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.welcome-text {
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.9;
}

/* What You'll Learn Section */
.what-you-learn {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.what-you-learn h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

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

.learn-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.learn-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.learn-item .icon {
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.learn-item h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

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

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

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

.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;
  line-height: 1.4;
}

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

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
}

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

.read-more::after {
  content: "→";
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 8px;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

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

.testimonial {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial .quote {
  color: var(--primary-color);
  margin-bottom: 15px;
  opacity: 0.5;
}

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

.testimonial-author {
  font-weight: 600;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: white;
}

.newsletter .container {
  max-width: 600px;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.newsletter p {
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
}

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

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

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
  border-radius: 0;
}

.footer-logo p {
  opacity: 0.7;
}

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

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

.footer-links ul li a {
  color: white;
  opacity: 0.7;
  transition: var(--transition);
}

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

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

.footer-contact p {
  margin-bottom: 10px;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social 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: white;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

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

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

.cookie-content p {
  margin-bottom: 20px;
}

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

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

/* Page Header */
.page-header {
  background-color: var(--bg-dark);
  color: white;
  padding: 60px 0;
  background-image: linear-gradient(rgba(42, 52, 68, 0.9), rgba(42, 52, 68, 0.9)), url('../images/2.jpg');
  background-size: cover;
  background-position: center;
}

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

.page-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Blog Page Styles */
.blog-content {
  padding: 60px 0;
}

.search-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.search {
  display: flex;
  flex: 1;
  max-width: 500px;
}

.search input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  font-size: 16px;
}

.search button {
  padding: 0 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  cursor: pointer;
}

.filter select {
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  width: 200px;
}

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

.blog-post {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-post .post-image {
  height: 100%;
}

.blog-post .post-content {
  padding: 30px;
}

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

.blog-post .post-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.pagination a.active {
  background-color: var(--primary-color);
  color: white;
}

.pagination a.next {
  width: auto;
  padding: 0 20px;
  border-radius: 20px;
}

/* About Page Styles */
.about-story {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-content p {
  margin-bottom: 20px;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.our-values h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

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

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

.value-item .icon {
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

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

.team {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.team h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

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

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

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

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

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

.team-member .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-bottom: 20px;
}

.team-member .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--bg-color);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.cta .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

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

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

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

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

.info-item .icon {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

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

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

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

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

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

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

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

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

.form-group textarea {
  resize: vertical;
}

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

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

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
}

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

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

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

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

.faq-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

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

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

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

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

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

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

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

.modal p {
  margin-bottom: 20px;
}

/* Blog Post Single */
.blog-post-single {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.blog-post-single .post-header {
  margin-bottom: 40px;
}

.blog-post-single .post-meta {
  margin-bottom: 20px;
}

.blog-post-single h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

.blog-post-single .post-image {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.table-of-contents {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.table-of-contents h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.table-of-contents ul {
  list-style-type: disc;
  padding-left: 20px;
}

.table-of-contents ul li {
  margin-bottom: 8px;
}

.table-of-contents ul li a {
  color: var(--text-color);
}

.table-of-contents ul li a:hover {
  color: var(--primary-color);
}

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

.post-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.post-content h4 {
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-content ul li, 
.post-content ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.post-content strong {
  font-weight: 600;
}

.post-content blockquote {
  padding: 20px;
  margin: 20px 0;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
}

.post-content img {
  margin: 20px 0;
}

.post-content a {
  text-decoration: underline;
}

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

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

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

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

.author-box {
  display: flex;
  gap: 20px;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px 0;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.author-info h3 {
  margin-bottom: 10px;
}

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

.author-info .social-links {
  display: flex;
  gap: 10px;
}

.author-info .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--bg-color);
  border-radius: 50%;
  color: var(--primary-color);
}

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

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

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

.post-nav-prev a, .post-nav-next a {
  font-weight: 600;
}

.related-posts {
  margin: 60px 0;
}

.related-posts h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

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

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

.related-image {
  height: 150px;
  overflow: hidden;
}

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

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

.related-post h4 {
  padding: 15px;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Tables */
.fee-table, .seasonal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.fee-table th, .fee-table td,
.seasonal-table th, .seasonal-table td {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.fee-table th, .seasonal-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.fee-table tr:nth-child(even), 
.seasonal-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-story .container {
    grid-template-columns: 1fr;
  }
  
  .story-content {
    order: 2;
  }
  
  .story-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
  }
  
  .logo {
    margin-bottom: 20px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .post-grid, .learn-grid, .values-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    margin-bottom: 10px;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 200px;
  }
  
  .contact-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.8rem !important;
  }
  
  .search-filter {
    flex-direction: column;
  }
  
  .search {
    max-width: 100%;
  }
  
  .filter select {
    width: 100%;
  }
  
  .blog-post-single h1 {
    font-size: 1.8rem;
  }
  
  .blog-post-single .post-image {
    height: 200px;
  }
  
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .post-nav-prev, .post-nav-next {
    max-width: 100%;
  }
}
