/* Ennis Endocrinology Clinic - Modern Medical Website Styling */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.contact-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.9rem;
}

.contact-item .icon {
  width: 16px;
  height: 16px;
  fill: #2563eb;
}

.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: #64748b;
  border-color: #e2e8f0;
}

.btn-outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  margin: 0 0 30px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-weight: 500;
}

.feature-icon {
  width: 20px;
  height: 20px;
  fill: #2563eb;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 20px;
}

.page-hero-content p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: #f8fafc;
}

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

.mission-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1e293b;
  margin: 0 0 30px;
}

.mission-text {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* Commitment Section */
.commitment-section {
  padding: 80px 0;
  background: #ffffff;
}

.commitment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.commitment-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1e293b;
  margin: 0 0 20px;
}

.commitment-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0 0 30px;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #64748b;
  line-height: 1.6;
}

.list-icon {
  width: 20px;
  height: 20px;
  fill: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}

.conditions-preview h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1e293b;
  margin: 0 0 30px;
}

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

.condition-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.condition-item:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.condition-icon {
  width: 20px;
  height: 20px;
  fill: #2563eb;
  flex-shrink: 0;
}

/* Hours Section */
.hours-section {
  padding: 80px 0;
  background: #f8fafc;
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hours-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1e293b;
  margin: 0 0 30px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.day {
  font-weight: 600;
  color: #1e293b;
}

.time {
  color: #64748b;
}

.cta-section {
  text-align: center;
  padding: 40px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 12px;
}

.cta-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0 0 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin: 0 0 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Doctor Profile */
.doctor-profile {
  padding: 80px 0;
  background: #ffffff;
}

.profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.doctor-image {
  text-align: center;
}

.doctor-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.doctor-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}

.doctor-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1e293b;
  margin: 0 0 10px;
}

.doctor-title {
  font-size: 1.2rem;
  color: #2563eb;
  font-weight: 600;
  margin: 0 0 30px;
}

.bio-section,
.education-section,
.certifications-section {
  margin-bottom: 40px;
}

.bio-section h3,
.education-section h3,
.certifications-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0 0 20px;
}

.bio-section p {
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 20px;
}

.education-timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  background: #2563eb;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.timeline-content h4 {
  color: #1e293b;
  margin: 0 0 5px;
  font-weight: 600;
}

.timeline-content p {
  color: #64748b;
  margin: 0;
}

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

.cert-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.cert-icon {
  width: 24px;
  height: 24px;
  fill: #2563eb;
  flex-shrink: 0;
}

.cert-content h4 {
  color: #1e293b;
  margin: 0 0 5px;
  font-weight: 600;
}

.cert-content p {
  color: #64748b;
  margin: 0;
  font-size: 0.9rem;
}

/* Personal Section */
.personal-section {
  padding: 80px 0;
  background: #f8fafc;
}

.personal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.personal-info h3,
.philosophy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0 0 20px;
}

.personal-info p,
.philosophy p {
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 20px;
}

.interests h4 {
  color: #1e293b;
  margin: 0 0 20px;
  font-weight: 600;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.interest-item:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.interest-icon {
  width: 20px;
  height: 20px;
  fill: #2563eb;
  flex-shrink: 0;
}

.philosophy blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #1e293b;
  margin: 0 0 20px;
  padding: 20px;
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 0 8px 8px 0;
}

/* Services Section */
.services-intro {
  padding: 80px 0;
  background: #f8fafc;
}

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

.intro-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1e293b;
  margin: 0 0 30px;
}

.intro-content p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.conditions-section {
  padding: 80px 0;
  background: #ffffff;
}

.conditions-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  color: #1e293b;
  margin: 0 0 60px;
}

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

.condition-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.condition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.5s ease;
}

.condition-card:hover::before {
  left: 100%;
}

.condition-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.condition-icon {
  width: 50px;
  height: 50px;
  fill: #2563eb;
  margin-bottom: 20px;
}

.condition-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0 0 15px;
}

.condition-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px;
}

.condition-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.condition-features li {
  padding: 8px 0;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 20px;
}

.condition-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.additional-services {
  padding: 80px 0;
  background: #f8fafc;
}

.additional-services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  color: #1e293b;
  margin: 0 0 60px;
}

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

.service-item {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.service-icon {
  width: 50px;
  height: 50px;
  fill: #2563eb;
  margin: 0 auto 20px;
}

.service-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1e293b;
  margin: 0 0 15px;
}

.service-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact-info-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-details h2,
.office-hours h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1e293b;
  margin: 0 0 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: #2563eb;
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-content h3 {
  color: #1e293b;
  margin: 0 0 5px;
  font-weight: 600;
}

.contact-content p {
  color: #64748b;
  margin: 0;
}

.contact-content a {
  color: #2563eb;
  text-decoration: none;
}

.contact-content a:hover {
  text-decoration: underline;
}

.map-section {
  padding: 80px 0;
  background: #f8fafc;
}

.map-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  color: #1e293b;
  margin: 0 0 40px;
}

.map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 250px;
}

.map-info h3 {
  color: #1e293b;
  margin: 0 0 10px;
  font-weight: 600;
}

.map-info p {
  color: #64748b;
  margin: 0 0 15px;
  font-size: 0.9rem;
}

.appointment-section {
  padding: 80px 0;
  background: #ffffff;
}

.appointment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.appointment-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1e293b;
  margin: 0 0 20px;
}

.appointment-info p {
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 30px;
}

.appointment-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.appointment-form {
  background: #f8fafc;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.appointment-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0 0 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.emergency-section {
  padding: 80px 0;
  background: #fef2f2;
  border-top: 4px solid #dc2626;
}

.emergency-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #dc2626;
  margin: 0 0 20px;
}

.emergency-content p {
  color: #7f1d1d;
  line-height: 1.6;
  margin: 0 0 30px;
}

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

.emergency-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 2px solid #fecaca;
}

.emergency-item h3 {
  color: #dc2626;
  margin: 0 0 15px;
  font-weight: 600;
}

.emergency-item p {
  color: #7f1d1d;
  margin: 0 0 10px;
}

.emergency-item a {
  color: #dc2626;
  font-weight: 600;
}

/* Forms Section */
.forms-intro {
  padding: 80px 0;
  background: #f8fafc;
}

.intro-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1e293b;
  margin: 0 0 30px;
}

.intro-content p {
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 30px;
}

.intro-content a {
  color: #2563eb;
  text-decoration: none;
}

.intro-content a:hover {
  text-decoration: underline;
}

.form-instructions {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  margin-top: 30px;
}

.form-instructions h3 {
  color: #1e293b;
  margin: 0 0 20px;
  font-weight: 600;
}

.form-instructions ol {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  padding-left: 20px;
}

.forms-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.form-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.5s ease;
}

.form-card:hover::before {
  left: 100%;
}

.form-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.form-icon {
  width: 50px;
  height: 50px;
  fill: #2563eb;
  margin-bottom: 20px;
}

.form-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1e293b;
  margin: 0 0 15px;
}

.form-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px;
}

.form-details {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-type {
  background: #dbeafe;
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.form-size {
  color: #64748b;
  font-size: 0.9rem;
}

.download-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.additional-resources {
  padding: 80px 0;
  background: #f8fafc;
}

.additional-resources h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  color: #1e293b;
  margin: 0 0 60px;
}

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

.resource-item {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-item:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.resource-icon {
  width: 50px;
  height: 50px;
  fill: #2563eb;
  margin: 0 auto 20px;
}

.resource-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1e293b;
  margin: 0 0 15px;
}

.resource-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px;
}

.form-help {
  padding: 80px 0;
  background: #ffffff;
}

.help-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  color: #1e293b;
  margin: 0 0 20px;
}

.help-content p {
  text-align: center;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 40px;
}

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

.help-item {
  text-align: center;
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.help-icon {
  width: 40px;
  height: 40px;
  fill: #2563eb;
  margin: 0 auto 20px;
}

.help-item h3 {
  color: #1e293b;
  margin: 0 0 10px;
  font-weight: 600;
}

.help-item p {
  color: #64748b;
  margin: 0;
}

.help-item a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.help-item a:hover {
  text-decoration: underline;
}

/* Forms Preview Section */
.forms-preview-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.forms-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.form-preview-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.form-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.form-preview-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.form-preview-icon svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}

.form-preview-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-preview-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.forms-preview-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
.site-footer {
  background: #1e293b;
  color: #ffffff;
  padding: 60px 0 20px;
}

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

.footer-section h4 {
  color: #ffffff;
  margin: 0 0 20px;
  font-weight: 600;
}

.footer-section p {
  color: #94a3b8;
  margin: 5px 0;
  line-height: 1.6;
}

.footer-section a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #334155;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
  }
  
  .commitment-content,
  .profile-content,
  .personal-content,
  .contact-grid,
  .appointment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .conditions-grid,
  .forms-grid {
    grid-template-columns: 1fr;
  }
  
  .conditions-grid .condition-card,
  .forms-grid .form-card {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-text h2 {
    font-size: 2rem;
  }
  
  .page-hero-content h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
