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

:root {
  --primary-color: #2c5f8d;
  --secondary-color: #1a4d6e;
  --accent-color: #4a90a4;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
header {
  background-color: var(--bg-color);
  border-bottom: 2px solid var(--border-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo:hover {
  color: var(--secondary-color);
  transition: var(--transition);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

/* Main Content */
main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

#main-content {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Typography */
h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.intro,
.intro-notice {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-color);
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-color);
  font-weight: 500;
}

/* Page Header */
.page-header {
  margin-bottom: 2rem;
}

.country-flag {
  font-size: 2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Challenge Grid */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.challenge-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.challenge-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--bg-color);
  display: block;
}

/* Challenge Hero Image */
.challenge-hero {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.challenge-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  background-color: var(--bg-light);
}

.challenge-card > h2,
.challenge-card > .challenge-summary,
.challenge-card > .available-countries,
.challenge-card > .btn {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.challenge-card > h2 {
  padding-top: 1.5rem;
  margin-top: 0;
}

.challenge-card > .btn {
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

.challenge-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.challenge-card h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.challenge-summary {
  flex: 1;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.available-countries {
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.available-countries strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Challenges List */
.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.challenge-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.challenge-item:hover {
  box-shadow: var(--shadow-hover);
}

.challenge-item h2 {
  margin-top: 0;
}

/* Countries List Page */
.countries-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.country-section {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

.country-section:hover {
  box-shadow: var(--shadow-hover);
}

.country-title {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.country-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.country-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.country-challenges-count {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.health-topics-list {
  margin: 1.5rem 0;
}

.health-topics-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.health-topics-list li {
  padding: 0.5rem 0;
}

.health-topics-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.health-topics-list a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Detailed Challenges List (Country Page) */
.challenges-detailed-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.challenge-detailed-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  scroll-margin-top: 100px;
}

.challenge-detailed-item:hover {
  box-shadow: var(--shadow-hover);
}

.challenge-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.challenge-image-small {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  background-color: var(--bg-color);
}

.challenge-header-content {
  flex: 1;
}

.challenge-header-content h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.challenge-description {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.challenge-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.detail-section {
  background-color: var(--bg-color);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.detail-section h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.products-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.products-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.products-count {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.no-products {
  color: var(--text-light);
  font-style: italic;
  padding: 1rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  text-align: center;
}

/* Content Sections */
.content-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

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

.info-grid div {
  background-color: var(--bg-color);
  padding: 1rem;
  border-radius: var(--border-radius);
}

/* Country Buttons */
.country-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-country {
  background-color: var(--bg-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.75rem 1.25rem;
}

.btn-country:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-product {
  background-color: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  width: 100%;
  display: block;
  margin-top: 1rem;
}

.btn-product:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Notice Box */
.notice-box {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--border-radius);
  padding: 1.25rem;
  margin: 2rem 0;
}

.notice-box p {
  margin: 0;
  color: #856404;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--bg-color);
}

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.product-benefit {
  flex: 1;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.product-countries {
  margin: 1rem 0;
  padding: 0.75rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.product-countries strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
}

.countries-list {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.product-learn-more {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-learn-more label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.country-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.country-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.learn-more-btn {
  width: 100%;
  margin-top: 0;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.footer-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: underline;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Popup Modal */
.footer-popup {
  display: none;
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  width: calc(100% - 40px);
  animation: slideInRight 0.3s ease-out;
}

.footer-popup.show {
  display: block;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.footer-popup-content {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  position: relative;
  border: 1px solid var(--border-color);
}

.footer-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-popup-close:hover {
  background-color: var(--bg-light);
  color: var(--text-color);
}

.footer-popup-title {
  color: var(--primary-color);
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  padding-right: 2rem;
}

.footer-popup-text {
  color: var(--text-color);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  main {
    margin: 1rem auto;
    padding: 0 1rem;
  }

  #main-content {
    padding: 1.5rem;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .challenges-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .country-buttons {
    flex-direction: column;
  }

  .btn-country {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .challenge-header {
    flex-direction: column;
  }

  .challenge-hero-image {
    height: 250px;
  }

  .challenge-image-small {
    width: 100%;
    height: 200px;
  }

  .challenge-details-grid {
    grid-template-columns: 1fr;
  }

  .health-topics-list ul {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-separator {
    display: none;
  }

  .footer-popup {
    top: 60px;
    right: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .intro,
  .intro-notice {
    font-size: 1rem;
  }

  #main-content {
    padding: 1rem;
  }

  .challenge-card,
  .product-card {
    padding: 1rem;
  }

  .challenge-hero-image {
    height: 200px;
  }
}

/* Accessibility */
.btn:focus,
a:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Contact Form Styles */
.contact-page {
  padding: 3rem 2rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-page .breadcrumb {
  align-self: flex-start;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.contact-intro {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
  align-items: start;
  width: 100%;
  max-width: 1100px;
}

.contact-form-container {
  width: 100%;
}

.form-card {
  background: linear-gradient(135deg, var(--bg-color) 0%, #fafbfc 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(44, 95, 141, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}

.required {
  color: var(--error-color);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--bg-color);
  color: var(--text-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  opacity: 0.8;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(44, 95, 141, 0.08);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(44, 95, 141, 0.1), 0 4px 12px rgba(44, 95, 141, 0.15);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
  line-height: 1.6;
}

.btn-submit {
  align-self: center;
  width: 100%;
  max-width: 300px;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(44, 95, 141, 0.3);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.form-message {
  padding: 1.125rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.form-message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #dc3545;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.info-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(44, 95, 141, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(44, 95, 141, 0.2);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.info-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.info-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  display: inline-block;
}

.info-card a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--primary-color);
}

/* Responsive Contact Form */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info {
    position: static;
  }

  .form-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-intro {
    font-size: 1rem;
  }

  .form-card {
    padding: 1.75rem;
    border-radius: 12px;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1rem;
  }

  .btn-submit {
    width: 100%;
    max-width: 100%;
  }

  .info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 0.5rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .contact-header {
    margin-bottom: 2rem;
  }

  .contact-header h1 {
    font-size: 1.75rem;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .btn,
  nav {
    display: none;
  }

  main {
    max-width: 100%;
  }

  #main-content {
    box-shadow: none;
    padding: 0;
  }
}

