@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --sage: #9caf88;
  --sage-light: #b8c9a9;
  --sage-dark: #7a8f6a;
  --cream: #faf8f5;
  --oat: #e8e2d9;
  --oat-dark: #d4cbc0;
  --charcoal: #3a3a3a;
  --charcoal-light: #5a5a5a;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-md: rgba(0, 0, 0, 0.12);
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Nunito Sans", sans-serif;
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}
h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--sage);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--charcoal-light);
}

header {
  position: relative;
  background: var(--white);
  z-index: 1000;
}

.header-top {
  background: var(--sage);
  padding: 8px 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top-content span {
  color: var(--white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-main {
  padding: 15px 0;
  border-bottom: 1px solid var(--oat);
}

.header-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}
.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.active span {
  background: transparent;
}
.nav-toggle.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: var(--sage-dark);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--oat) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--charcoal-light);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px var(--shadow-md);
}

.hero-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid var(--sage-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-decoration-1 {
  top: -20px;
  right: -20px;
}
.hero-decoration-2 {
  bottom: -20px;
  left: -20px;
}

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--cream);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.6rem;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.service-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--charcoal-light);
}

.about-preview {
  background: linear-gradient(180deg, var(--cream) 0%, var(--oat) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 50px var(--shadow);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 25px;
  color: var(--charcoal-light);
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.features-list i {
  color: var(--sage);
  font-size: 1.1rem;
}

.destinations {
  background: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--oat);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
}

.destination-overlay h4 {
  color: var(--white);
  margin-bottom: 5px;
}
.destination-overlay p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

.testimonials {
  background: var(--sage);
  color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  color: var(--charcoal);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-weight: 700;
}

.author-info h5 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--oat) 0%, var(--cream) 100%);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 15px;
}
.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--charcoal-light);
}

footer {
  background: var(--charcoal);
  color: var(--oat);
  padding: 40px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 15px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.footer-brand .abn {
  font-size: 0.85rem;
  color: var(--oat-dark);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--oat);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--sage-light);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--sage-light);
  margin-top: 4px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.payment-icons i {
  font-size: 1.8rem;
  color: var(--oat);
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--oat);
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: var(--sage-light);
}

.page-hero {
  background: linear-gradient(135deg, var(--oat) 0%, var(--cream) 100%);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 15px;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--charcoal-light);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--sage-dark);
}
.breadcrumb span {
  color: var(--charcoal-light);
}

.about-full {
  background: var(--white);
}

.about-full-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-full-content h3 {
  margin: 30px 0 15px;
}
.about-full-content p {
  color: var(--charcoal-light);
}

.team-section {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: var(--sage-dark);
}

.team-card h4 {
  margin-bottom: 5px;
}
.team-card span {
  font-size: 0.9rem;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 15px;
}
.team-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 25px 20px;
}

.value-card i {
  font-size: 2.5rem;
  color: var(--sage);
  margin-bottom: 15px;
}

.value-card h4 {
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--sage);
  margin-top: 3px;
}

.contact-item h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}
.contact-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.contact-form-wrapper {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--oat-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--sage);
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-section {
  background: var(--cream);
  padding: 0;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.service-detail {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.service-detail-content h3 {
  margin: 30px 0 15px;
}
.service-detail-content p {
  color: var(--charcoal-light);
}
.service-detail-content ul {
  margin: 20px 0;
  padding-left: 25px;
}
.service-detail-content li {
  margin-bottom: 10px;
  color: var(--charcoal-light);
}

.service-sidebar {
  background: var(--cream);
  padding: 30px;
  border-radius: var(--radius-lg);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.service-sidebar h4 {
  margin-bottom: 20px;
}
.service-sidebar .service-price {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.service-sidebar .btn {
  width: 100%;
}

.process-section {
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.process-step h4 {
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: var(--transition);
  color: var(--sage);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 25px 20px;
  margin: 0;
  color: var(--charcoal-light);
}

.success-page {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--oat) 0%, var(--cream) 100%);
}

.success-content i {
  font-size: 5rem;
  color: #859f6c;
  margin-bottom: 30px;
}

.success-content h1 {
  margin-bottom: 15px;
}
.success-content p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: var(--charcoal-light);
}

.error-page {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--oat) 0%, var(--cream) 100%);
}

.error-content h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--sage);
  margin-bottom: 10px;
}

.error-content h2 {
  margin-bottom: 15px;
}
.error-content p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: var(--charcoal-light);
}

.policy-content {
  background: var(--white);
}

.policy-text {
  max-width: 900px;
  margin: 0 auto;
}

.policy-text h2 {
  margin: 40px 0 20px;
  font-size: 1.6rem;
  padding-top: 20px;
  border-top: 1px solid var(--oat);
}

.policy-text h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.policy-text h3 {
  margin: 25px 0 15px;
  font-size: 1.3rem;
}
.policy-text p {
  color: var(--charcoal-light);
}
.policy-text ul {
  margin: 15px 0;
  padding-left: 25px;
}
.policy-text li {
  margin-bottom: 10px;
  color: var(--charcoal-light);
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px var(--shadow-md);
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}
.cookie-popup h4 {
  margin-bottom: 10px;
}
.cookie-popup p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--charcoal-light);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 912px) {
  .nav-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px var(--shadow);
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header-top-content {
    justify-content: center;
  }
  .header-top-content span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact p {
    justify-content: center;
  }
  .payment-icons {
    justify-content: center;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 25px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .map-container {
    height: 300px;
    margin: 0 20px;
  }
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 15px;
  }
  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .service-card {
    padding: 25px 20px;
  }
  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .contact-item i {
    margin: 0 auto;
  }
  .cookie-popup {
    left: 10px;
    right: 10px;
    padding: 20px;
  }
  .cookie-buttons {
    flex-direction: column;
  }
  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .logo-text {
    font-size: 1.1rem;
  }
  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
