/* Hero Section Styles with teva- prefix */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Montserrat:wght@300;600&display=swap');

.teva-photo-safari-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: url('images/photographer.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.teva-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 30, 20, 0.7) 0%, rgba(5, 15, 10, 0.5) 100%);
  z-index: 1;
}

.teva-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 20px;
  animation: teva-fadeInUp 1s ease-out;
}

.teva-hero-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.teva-hero-subtitle {
  font-family: 'poppins', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.teva-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.teva-cta-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.teva-cta-button {
  background: #e8c547;
  color: #1a1a1a;
  border: 2px solid #e8c547;
}

.teva-cta-button.teva-secondary-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.teva-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.teva-cta-button.teva-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.teva-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  animation: teva-bounce 2s infinite;
}

.teva-scroll-indicator svg {
  margin-top: 10px;
}

@keyframes teva-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes teva-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .teva-hero-title {
    font-size: 3.5rem;
  }
  
  .teva-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .teva-hero-cta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .teva-hero-title {
    font-size: 2.5rem;
  }
  
  .teva-hero-subtitle {
    font-size: 1rem;
  }
  
  .teva-cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .teva-hero-title {
    font-size: 3.5rem;
  }
  
  .teva-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .teva-hero-cta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .teva-hero-title {
    font-size: 2.5rem;
  }
  
  .teva-hero-subtitle {
    font-size: 1rem;
  }
  
  .teva-cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Photography Overview Section - Minimalist */
.teva-photo-overview {
  display: flex;
  min-height: 500px;
  background-color: #f9f9f7;
}

.teva-overview-image {
  flex: 1;
  background: #eee;
}

.teva-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teva-overview-content {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teva-section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  position: relative;
}

.teva-section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #e8c547;
}

.teva-overview-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .teva-photo-overview {
    flex-direction: column;
    min-height: auto;
  }
  
  .teva-overview-image {
    height: 300px;
  }
  
  .teva-overview-content {
    padding: 50px 30px;
  }
  
  .teva-section-title {
    font-size: 2rem;
  margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .teva-overview-content {
    padding: 40px 20px;
  }
  
  .teva-section-title {
    font-size: 1.8rem;
  }
  
  .teva-overview-text {
    font-size: 1.1rem;
  }
}

/* Font Awesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Special Features Section - Container Free */
.teva-special {
  padding: 3vw 5vw;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  max-width: 1400px;
  margin: 0 auto;
}

.teva-special-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1em;
  position: relative;
}

.teva-special-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 2em;
  height: 3px;
  background: #e8c547;
}

.teva-feature-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2vw;
  max-width: 1200px;
  margin: 0 auto;
}

.teva-feature-block {
  padding: 1.5vw;
  background: white;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.3s ease;
  min-width: 0; /* Prevent grid blowout */
}

.teva-feature-icon {
  display: block;
  font-size: 2rem;
  color: #e8c547;
  text-align: center;
  margin: 0 auto 1rem;
}

.teva-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1rem;
}

.teva-feature-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teva-feature-item {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.4rem;
}

.teva-bullet {
  color: #e8c547;
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 0.9rem;
}

/* Mobile Horizontal Scroll */
@media (max-width: 768px) {
  .teva-special {
    padding: 2rem 1rem;
    overflow-x: auto;
  }
  
  .teva-feature-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  
  .teva-feature-block {
    flex: 0 0 85%;
    scroll-snap-align: start;
    padding: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  
  .teva-feature-group::-webkit-scrollbar {
    height: 4px;
  }
  
  .teva-feature-group::-webkit-scrollbar-thumb {
    background: #e8c547;
    border-radius: 4px;
  }
}

/* Small Screen Adjustments */
@media (max-width: 480px) {
  .teva-special-heading {
    font-size: 1.6rem;
  }
  
  .teva-feature-block {
    flex: 0 0 90%;
  }
  
  .teva-feature-title {
    font-size: 1.2rem;
  }
  
  .teva-feature-item {
    font-size: 0.9rem;
  }
}

/* Photography Safari Itineraries - Premium Horizontal Scroll */
.teva-safari-itineraries {
    font-family: 'Poppins', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    padding: 5rem 1rem;
    position: relative;
}

.teva-itinerary-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.teva-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2a3a4a;
    letter-spacing: 0.8px;
    position: relative;
}

.teva-section-heading:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #d4af37;
}

.teva-section-subhead {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 1.8rem;
}

/* Horizontal Scroll Container */
.teva-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}

.teva-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.teva-scroll-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.teva-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

.teva-itinerary-cards {
    display: inline-flex;
    gap: 2rem;
    padding: 0 2rem;
    min-width: min-content;
}

/* Safari Cards */
.teva-safari-card {
    width: 320px;
    flex: 0 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 450px;
}

.teva-safari-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.teva-card-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.teva-card-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.teva-card-content {
    position: relative;
    z-index: 2;
}

.teva-itinerary-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #fff;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.teva-itinerary-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.teva-duration {
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

.teva-price {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Glass Button */
.teva-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    text-decoration: none;
    min-width: 180px;
}

.teva-explore-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.25) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.teva-explore-btn:hover .glass-overlay {
    transform: translateX(100%);
}

/* Centering for Large Screens */
@media (min-width: 1200px) {
    .teva-scroll-container {
        overflow-x: visible;
        display: flex;
        justify-content: center;
    }
    
    .teva-itinerary-cards {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 0;
        min-width: 0;
        width: auto;
        max-width: 1400px;
    }
    
    .teva-safari-card {
        width: 300px;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .teva-section-heading {
        font-size: 2.2rem;
    }
    
    .teva-section-subhead {
        font-size: 1rem;
    }
    
    .teva-itinerary-cards {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .teva-safari-card {
        width: 280px;
        height: 420px;
    }
    
    .teva-card-image {
        padding: 1.5rem;
    }
    
    .teva-itinerary-name {
        font-size: 1.6rem;
    }
}

/* Updated CSS with gradient fade effect */
.teva-gallery {
  background: white;
  padding: 3rem 1.5rem;
  position: relative;
}

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* New wrapper for positioning */
.gallery-grid-wrapper {
  flex: 1;
  position: relative;
  max-height: 380px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 80px;
  gap: 0.75rem;
  max-height: 380px;
  overflow: hidden;
}

/* Gradient fade effect */
.grid-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, 
    rgba(255,255,255,1) 0%, 
    rgba(255,255,255,0.8) 60%, 
    rgba(255,255,255,0) 100%);
  pointer-events: none;
}

/* Rest of your existing styles... */
.gallery-content {
  flex: 0 0 38%;
  padding-top: 1rem;
}

.gallery-heading {
  font-family: 'Dancing Script', cursive;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #2a2a2a;
  margin-bottom: 1.25rem;
}

.gallery-description {
  font-family: 'Poppins', sans-serif;
  color: #555;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
  color: white;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background-size: 200% 200%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
  background-position: 100% 100%;
}

.instagram-btn:active {
  transform: translateY(0);
}

.instagram-icon {
  display: flex;
  align-items: center;
}

.gallery-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Masonry layout assignments */
.gallery-card:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1 / span 3;
}

.gallery-card:nth-child(2) {
  grid-column: 4 / span 2;
  grid-row: 1 / span 2;
}

.gallery-card:nth-child(3) {
  grid-column: 6 / span 3;
  grid-row: 1 / span 3;
}

.gallery-card:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 4 / span 2;
}

.gallery-card:nth-child(5) {
  grid-column: 3 / span 3;
  grid-row: 4 / span 3;
}

.gallery-card:nth-child(6) {
  grid-column: 6 / span 2;
  grid-row: 4 / span 2;
}

.gallery-card:nth-child(7) {
  grid-column: 8 / span 1;
  grid-row: 4 / span 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gallery-container {
    flex-direction: column;
  }
  
  .gallery-grid-wrapper {
    width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .gallery-card {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }
  
  .gallery-card:nth-child(7) {
    grid-column: 2 / span 2 !important;
  }
}

@media (max-width: 576px) {
  .teva-gallery {
    padding: 2rem 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 70px;
    gap: 0.5rem;
  }
  
  .gallery-card {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }
  
  .gallery-card:nth-child(odd) {
    grid-row: span 2 !important;
  }
  
  .gallery-heading {
    font-size: 1.8rem;
  }
  
  .grid-fade {
    height: 40px; /* Smaller fade on mobile */
  }
}

/* Minimal Photography Safari Booking Section */
.ps-booking-section {
  padding: 3rem 1rem;
  background-color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ps-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ps-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ps-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 1rem;
}

.ps-main-title span {
  color: #3C4F2A;
}

.ps-title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.ps-decoration-line {
  width: 60px;
  height: 1px;
  background-color: #ddd;
}

.ps-decoration-icon {
  color: #3C4F2A;
  margin: 0 1rem;
  font-size: 1.2rem;
}

.ps-content-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.ps-single-col {
  flex: 1;
  min-width: 300px;
}

.ps-info-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 3px solid #3C4F2A;
}

.ps-card-head {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ps-card-icon {
  font-size: 1.5rem;
  color: #3C4F2A;
  margin-right: 1rem;
}

.ps-card-title {
  font-size: 1.2rem;
  font-family: 'poppins', sans-serif;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.ps-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-feature-list li {
  padding: 0.6rem 0;
  color: #555;
  font-family: poppins, sans-serif;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.ps-feature-list li::before {
  content: "•";
  color: #3C4F2A;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.ps-feature-list li span {
  color: #333;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.ps-action-area {
  text-align: center;
  margin-top: 3rem;
}

.ps-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background-color: #3C4F2A;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ps-action-btn:hover {
  background-color: #2E3D20;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ps-btn-icon {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.ps-action-btn:hover .ps-btn-icon {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .ps-main-title {
    font-size: 1.7rem;
  }
  
  .ps-info-card {
    padding: 1.2rem;
  }
  
  .ps-card-title {
    font-size: 1.1rem;
  }

  /* Enhanced horizontal scrolling for small screens */
  .ps-content-cols {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-bottom: 1rem; /* Space for scrollbar */
    justify-content: flex-start;
    gap: 1rem;
    margin: 0 -1rem;
    padding: 0 1rem 1rem;
  }

  .ps-single-col {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: auto;
  }

  .ps-info-card {
    min-height: 100%;
  }

  /* Hide scrollbar but keep functionality */
  .ps-content-cols::-webkit-scrollbar {
    display: none;
  }
  
  .ps-content-cols {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* Minimal Contact Section Styles */
.ps-contact-section {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.ps-contact-container {
  max-width: 1000px;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.ps-contact-content {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
}

.ps-contact-image {
  flex: 1;
  min-width: 300px;
}

.ps-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.ps-contact-subtitle {
  color: #7f8c8d;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.ps-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ps-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ps-contact-icon {
  color: #3C4F2A;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.ps-contact-label {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.ps-contact-link {
  color: #2c3e50;
  font-weight: 500;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.ps-contact-link:hover {
  color: #3C4F2A;
}

.ps-contact-note {
  color: #95a5a6;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .ps-contact-container {
    flex-direction: column;
  }
  
  .ps-contact-image {
    order: -1;
    height: 200px;
  }
  
  .ps-contact-content {
    padding: 1.5rem;
  }
}