:root {
  --primary-color: #2c5282;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --secondary-color: #f97316;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --border-color: #e2e8f0;
  --border-radius: 6px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-light);
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  height: 65px;
}

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

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

.logo img {
  width: 15%;
  transition: var(--transition);
}

header.scrolled .logo img {
  height: 40px;
}

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

nav ul li {
  margin: 0 1.5rem;
}

nav ul li a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  padding: 1rem 0;
  position: relative;
}

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Main Content */
main {
  padding-top: var(--header-height);
}

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

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

.hero-content {
  flex: 1;
  padding-right: 4rem;
}

.hero-content h1 {
  margin-bottom: 2rem;
  font-size: 4.8rem;
  color: var(--primary-dark);
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
  position: relative;
}

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

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: var(--bg-color);
}

.features h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin: 0 auto 2rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 3rem;
  height: 3rem;
}

.feature-item h3 {
  margin-bottom: 1.5rem;
}

.feature-item p {
  color: var(--text-light);
}

/* Popular Destinations */
.popular-destinations {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.popular-destinations h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.destination-content {
  padding: 2rem;
  background-color: var(--bg-color);
}

.destination-content h3 {
  margin-bottom: 1rem;
}

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

/* Testimonials */
.testimonials {
  padding: 8rem 0;
  background-color: var(--bg-color);
}

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

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

.testimonial {
  display: flex;
  justify-content: center;
}

.testimonial-content {
  max-width: 800px;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.testimonial-content p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--text-light);
  font-style: normal;
  font-size: 1.4rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.dot {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.6rem;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Call to Action */
.cta {
  padding: 8rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn-primary:hover {
  background-color: var(--bg-light);
}

/* Latest Posts */
.latest-posts {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

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

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

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

.post-preview h3 {
  padding: 2rem 2rem 1rem;
  font-size: 2rem;
}

.post-preview p {
  padding: 0 2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.read-more {
  display: block;
  padding: 0 2rem 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.view-all {
  text-align: center;
  margin-top: 4rem;
}

/* Footer */
footer {
  background-color: #1a365d;
  color: white;
  padding: 6rem 0 2rem;
}

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

.footer-about .footer-logo {
  height: 5rem;
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 0.5rem;
  border-radius: var(--border-radius);
}

.footer-about p {
  color: #cbd5e0;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer-contact ul li svg {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.footer-contact ul li span {
  color: #cbd5e0;
}

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

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

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

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

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

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

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

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

.copyright p {
  margin: 0;
  color: #a0aec0;
  font-size: 1.4rem;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: #a0aec0;
  font-size: 1.4rem;
}

.legal-links a:hover {
  color: white;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* About Page */
.about-intro {
  padding: 8rem 0;
}

.about-intro .container {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

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

.values {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.values h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

.value-item {
  background-color: var(--bg-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  margin: 0 auto 2rem;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.value-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.team {
  padding: 8rem 0;
}

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

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

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

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

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

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

.team-member h3 {
  padding: 2rem 2rem 0.5rem;
  margin-bottom: 0;
}

.team-member p {
  padding: 0 2rem;
  margin-bottom: 1rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  padding: 0 2rem 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.achievements {
  padding: 8rem 0;
  background-color: var(--primary-color);
  color: white;
}

.achievements h2 {
  text-align: center;
  color: white;
  margin-bottom: 5rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.achievement-number {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-family: var(--font-secondary);
}

.achievement-item p {
  font-size: 1.8rem;
  margin: 0;
}

.partners {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

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

.partners p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
  color: var(--text-light);
  font-size: 1.8rem;
}

.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  align-items: center;
}

.partner-logo {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
}

/* Services Page */
.services-intro {
  padding: 8rem 0 4rem;
}

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

.intro-content p {
  font-size: 1.8rem;
  color: var(--text-light);
}

.service-categories {
  padding: 4rem 0 8rem;
}

.service-category {
  display: flex;
  margin-bottom: 8rem;
  gap: 6rem;
  align-items: center;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

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

.service-details {
  flex: 1;
}

.service-details h3 {
  margin-bottom: 2rem;
}

.service-details p {
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-features li svg {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1.5rem;
  color: var(--success-color);
  flex-shrink: 0;
}

.additional-services {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

.service-card {
  background-color: var(--bg-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

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

.service-icon {
  margin: 0 auto 2rem;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.service-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.service-card h3 {
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--text-light);
}

.process {
  padding: 8rem 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 2.5rem;
  top: 6rem;
  bottom: -2rem;
  width: 2px;
  background-color: var(--border-color);
}

.step-number {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 2.5rem;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-light);
}

.faq {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

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

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

.accordion-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: rgba(44, 82, 130, 0.05);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.8rem;
}

.accordion-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.accordion-content {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 2rem 2rem;
  max-height: 500px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Blog Page */
.blog-content {
  padding: 8rem 0;
}

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

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

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

.post-content {
  padding: 3rem;
}

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

.post-category {
  color: var(--primary-color);
  font-weight: 600;
}

.post-content h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
}

.post-content h3 {
  margin: 3rem 0 1.5rem;
  font-size: 2.2rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.8;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.post-tags span,
.post-share span {
  color: var(--text-light);
  margin-right: 1rem;
}

.post-tags a {
  display: inline-block;
  margin-right: 1rem;
  background-color: rgba(44, 82, 130, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.4rem;
  transition: var(--transition);
}

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

.post-share a {
  margin-left: 1rem;
  color: var(--text-light);
}

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

/* Contact Page */
.contact-info {
  padding: 8rem 0;
}

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

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

.contact-details > p {
  margin-bottom: 4rem;
  color: var(--text-light);
  font-size: 1.8rem;
}

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

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

.method-icon {
  margin-right: 1.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.method-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.method-details h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.method-details p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.detail-note {
  font-size: 1.4rem;
  color: var(--text-light);
  font-style: italic;
}

.method-details .social-links {
  padding: 0;
  margin-top: 1rem;
}

.contact-form-container {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

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

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: 1rem;
  cursor: pointer;
}

.consent-checkbox, .newsletter-checkbox {
  margin-top: 1rem;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}

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

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

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 4rem;
}

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

.map-details {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 4rem;
}

.office-hours h3,
.directions h3 {
  margin-bottom: 1.5rem;
}

.office-hours p,
.directions p {
  color: var(--text-light);
}

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

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

.modal-content {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 90%;
  max-width: 500px;
  overflow: hidden;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  color: white;
}

.close-modal {
  font-size: 2.8rem;
  font-weight: 700;
  cursor: pointer;
  color: white;
}

.modal-body {
  padding: 3rem;
  text-align: center;
}

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

.modal-body .close-btn {
  margin-top: 1rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: bottom 0.5s ease;
}

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

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 2rem;
  max-width: 800px;
}

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

.cookie-buttons button {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

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

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

.btn-decline:hover {
  background-color: var(--bg-light);
}

.cookie-content a {
  font-size: 1.4rem;
}

/* Page Views Counter */
.page-views {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  box-shadow: var(--box-shadow);
  z-index: 900;
}

.view-count {
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
  
  .about-intro .container {
    flex-direction: column;
    gap: 4rem;
  }
  
  .service-category,
  .service-category.reverse {
    flex-direction: column;
    gap: 4rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    padding-top: var(--header-height);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 2rem;
  }
  
  nav ul li {
    margin: 1.5rem 0;
  }
  
  .hamburger {
    display: flex;
    z-index: 1002;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}
