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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #cd7878;
  background-color: #ffffff;
  font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #cd7878;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

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

p {
  margin-bottom: 1.5rem;
  color: #cd7878;
  font-size: 1.1rem;
}

a {
  color: #cd7878;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #b86b6b;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  padding: 1.5rem 0;
}

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

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #cd7878;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: #cd7878;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #b86b6b;
}

.nav-cta {
  background: #f5ede1;
  color: #cd7878 !important;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(205, 120, 120, 0.3);
  background: #f0e6d8;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('background.jpeg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.rotating-word {
  color: #f5ede1;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-weight: 700;
  position: relative;
  display: inline-block;
  min-width: 400px;
  max-width: 95vw;
  text-align: center;
  transition: opacity 0.8s ease-in-out;
  font-family: 'Caveat', cursive;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rotating-word::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f5ede1, #cd7878, transparent);
  border-radius: 2px;
  transition: opacity 0.8s ease-in-out;
}

/* Handwriting animation styles */
.rotating-word.typing {
  /* Removed overflow: hidden to prevent text cutoff */
}

.rotating-word.typing::before {
  content: '|';
  position: absolute;
  right: -2px;
  top: 0;
  color: #cd7878;
  font-weight: 400;
  animation: blink 1s infinite;
  z-index: 10;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.rotating-word .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotate(0deg);
  animation: typeChar 0.3s ease forwards;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes typeChar {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.rotating-word.fade-out {
  opacity: 0;
}

.rotating-word.fade-out::after {
  opacity: 0;
}

.rotating-word.fade-in {
  opacity: 1;
}

.rotating-word.fade-in::after {
  opacity: 1;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #f5ede1;
  color: #cd7878;
  box-shadow: 0 4px 15px rgba(205, 120, 120, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(205, 120, 120, 0.4);
  color: #cd7878;
  background: #f0e6d8;
}

.btn-secondary {
  background: #f5ede1;
  color: #cd7878;
  border: 2px solid #cd7878;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #f0e6d8;
  transform: translateY(-3px);
  color: #cd7878;
  border-color: #b86b6b;
}

/* Articles Section */
.articles {
  padding: 8rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  color: #cd7878;
}

.section-header p {
  font-size: 1.3rem;
  color: #cd7878;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.8;
}

/* New semantic styles for articles section */
.articles .section-tagline {
  font-size: 1.4rem;
  color: #cd7878;
  font-weight: 500;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.articles .section-tagline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #f5ede1 0%, #cd7878 100%);
  border-radius: 2px;
}

.articles .section-description {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.articles .section-description p {
  font-size: 1.2rem;
  color: #cd7878;
  line-height: 1.9;
  margin-bottom: 2rem;
  text-align: left;
}

.articles .section-description p:first-child {
  font-style: italic;
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(245, 237, 225, 0.05) 0%, rgba(205, 120, 120, 0.05) 100%);
  border-radius: 15px;
  border-left: 4px solid #cd7878;
  margin-bottom: 2.5rem;
}

.articles .section-benefits {
  max-width: 600px;
  margin: 3rem auto 0 auto;
  padding: 2.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.articles .section-benefits::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f5ede1 0%, #cd7878 100%);
  border-radius: 15px 15px 0 0;
}

.articles .section-benefits h3 {
  font-size: 1.3rem;
  color: #cd7878;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.articles .section-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.articles .section-benefits li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cd7878;
}

.articles .section-benefits li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #cd7878;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.4;
}

.articles .section-benefits li:last-child {
  margin-bottom: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.article-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #f5ede1 0%, #cd7878 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(205, 120, 120, 0.2);
}

.article-card:hover::before {
  opacity: 1;
}

.article-card.featured {
  background: linear-gradient(135deg, #f5ede1 0%, #cd7878 100%);
  color: white;
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(205, 120, 120, 0.3);
}

.article-card.featured::before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}

.article-card.featured h3 a,
.article-card.featured .article-excerpt {
  color: white;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}

.article-date {
  color: #718096;
  font-weight: 500;
}

.article-category {
  background: #f5ede1;
  color: #cd7878;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.latest-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.article-card.featured .article-category {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.article-card h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.article-card h3 a {
  color: #cd7878;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-card h3 a:hover {
  color: #b86b6b;
}

.article-excerpt {
  color: #cd7878;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.article-link {
  color: #cd7878;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.article-link:hover {
  color: #b86b6b;
  transform: translateX(5px);
}

/* View All Articles Section */
.view-all-articles {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  border: 2px dashed rgba(205, 120, 120, 0.2);
  transition: all 0.3s ease;
}

.view-all-articles:hover {
  border-color: rgba(205, 120, 120, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(205, 120, 120, 0.1);
}

.view-all-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #cd7878;
}

.view-all-content p {
  font-size: 1.2rem;
  color: #cd7878;
  margin-bottom: 2.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.view-all-articles .btn {
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
}

/* About Section */
.about {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 2rem;
  color: #cd7878;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f5ede1 0%, #cd7878 100%);
  border-radius: 2px;
}

.about-text h2 em {
  color: #cd7878;
  font-style: italic;
  font-weight: 700;
  position: relative;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cd7878;
  margin-bottom: 1.5rem;
}

.about-text p:first-of-type {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 3rem;
}

.about-text p:nth-of-type(2) {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #cd7878;
}

.about-text p:nth-of-type(3) {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #cd7878;
  margin-bottom: 3rem;
}

.about-text p:nth-of-type(4) {
  font-weight: 600;
  color: #2d3748;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.about-text ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cd7878;
}

.about-text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #cd7878;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.4;
}

.about-text ul li:last-child {
  margin-bottom: 0;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.about-portrait {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 10px solid white;
  background: linear-gradient(135deg, #f5ede1 0%, #cd7878 100%);
}

/* Booking Section */
.booking {
  padding: 8rem 0;
  background: white;
}

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

.booking-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 2rem;
  color: #cd7878;
}

.booking-content > p {
  font-size: 1.3rem;
  color: #cd7878;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.8;
  text-align: center;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.booking-option {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.booking-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.booking-option h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #cd7878;
}

.booking-option p {
  color: #cd7878;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 4rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-links a {
  color: #a0aec0;
  transition: color 0.2s ease;
}

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

/* Articles Page */
.articles-page {
  padding: 10rem 0 6rem 0;
  background: white;
}

.page-header {
  text-align: center;
  margin-bottom: 5rem;
}

.page-header h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 2rem;
  color: #cd7878;
}

.page-header p {
  font-size: 1.4rem;
  color: #cd7878;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  
  .rotating-word {
    min-width: 300px;
    max-width: 98vw;
    font-size: clamp(2rem, 5vw, 4rem) !important;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .about-portrait {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    min-width: 250px;
    min-height: 250px;
    max-width: 250px;
    max-height: 250px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-logo {
    font-size: 1.3rem;
    gap: 0.5rem;
  }
  
  .nav-logo-img {
    height: 38px;
    max-width: 160px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-options {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .rotating-word {
    min-width: 300px;
    max-width: 98vw;
    font-size: clamp(1.8rem, 4vw, 3.5rem) !important;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .nav-logo {
    font-size: 1.1rem;
    gap: 0.4rem;
  }
  
  .nav-logo-img {
    height: 30px;
    max-width: 120px;
  }
}

/* Service Cards Styling */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #f5ede1 0%, #cd7878 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #cd7878;
  font-weight: 600;
}

.service-subtitle {
  font-size: 1rem;
  color: #cd7878;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.8;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #cd7878;
}

.service-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #cd7878;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
}

.service-card .btn {
  margin-top: 2rem;
  width: 100%;
  background: #f5ede1;
  color: #cd7878;
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro {
  font-size: 1.3rem;
  color: #cd7878;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.8;
  font-weight: 500;
}

/* Responsive adjustments for service cards */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .service-features li {
    font-size: 0.95rem;
  }
}

/* Minimalist styles for articles section */
.articles .section-intro {
  font-size: 1.4rem;
  color: #cd7878;
  font-weight: 500;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.articles .section-description {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.articles .section-description p {
  font-size: 1.2rem;
  color: #cd7878;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 0;
}

/* Responsive styles for minimalist articles section */
@media (max-width: 768px) {
  .articles .section-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .articles .section-description {
    max-width: 100%;
    margin: 0 auto 3rem auto;
  }
  
  .articles .section-description p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .articles .section-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .articles .section-description p {
    font-size: 0.95rem;
  }
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 1.4rem;
  color: #cd7878;
  font-weight: 500;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-description {
  font-size: 1.2rem;
  color: #cd7878;
  line-height: 1.9;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  text-align: center;
}

.contact-options h3 {
  font-size: 1.3rem;
  color: #cd7878;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(205, 120, 120, 0.2);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.contact-card h4 {
  font-size: 1.3rem;
  color: #cd7878;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-card p {
  font-size: 1rem;
  color: #cd7878;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-card .btn {
  background: #f5ede1;
  color: #cd7878;
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
  .contact {
    padding: 6rem 0;
  }
  
  .contact-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-description {
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .contact-options h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-icon {
    font-size: 2.5rem;
  }
  
  .contact-card h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 4rem 0;
  }
  
  .contact-intro {
    font-size: 1.1rem;
  }
  
  .contact-description {
    font-size: 0.95rem;
  }
  
  .contact-card {
    padding: 2rem 1rem;
  }
  
  .contact-card p {
    font-size: 0.95rem;
  }
}
