/* CSS Variables for Thematic Colors */
:root {
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --light-cream: #F5F5DC;
    --off-white: #FFFDD0;
    --accent-orange: #FF6B35;
    --dark-brown: #3C2415;
    --text-dark: #2C1810;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* Shibirarthi Information Section - Enhanced Styling */
#shibirarthi {
  padding: 2rem 0;
  background: linear-gradient(to bottom, var(--off-white), var(--white));
}

#shibirarthi .section-header {
  margin-bottom: 2.5rem;
}

.shibir-nav {
  margin-top: 2rem;
  margin-bottom: 0;
}

.subtab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
  border: 2px solid var(--light-cream);
  margin-bottom: 2rem;
}

.subtab-button {
  background: var(--light-cream);
  border: 2px solid var(--primary-brown);
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: var(--primary-brown);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.subtab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.subtab-button:hover::before {
  left: 100%;
}

.subtab-button:hover {
  background: var(--primary-brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-dark);
  border-color: var(--primary-brown);
}

.subtab-button.active {
  background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
  border-color: var(--primary-brown);
  box-shadow: 0 4px 15px var(--shadow-dark);
  transform: translateY(-2px);
}

.subtab-button.active:hover {
  background: linear-gradient(135deg, var(--secondary-brown), var(--primary-brown));
}

.subtab-content {
  display: none;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 6px 25px var(--shadow);
  border: 1px solid var(--light-cream);
  animation: fadeInUp 0.4s ease-out;
}

/* Things to Carry - Left Alignment */
#things-to-carry.subtab-content {
  text-align: left;
}

#things-to-carry .info-section {
  text-align: left;
}

#things-to-carry p {
  text-align: left;
  margin-left: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* Enhanced Letter Intro */
.letter-intro {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--light-cream), var(--white));
  border-radius: 12px;
  border-left: 5px solid var(--primary-brown);
  box-shadow: 0 3px 10px var(--shadow);
}

.letter-intro p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.letter-intro p:first-child {
  font-size: 1.3rem;
}

/* Enhanced Particulars Section */
.particulars-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  border: 2px solid var(--light-cream);
}

.particulars-section h3 {
  color: var(--primary-brown);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-brown);
}

.particulars-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}

.particulars-table tr:first-child td {
  background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
  font-size: 1.2rem;
  text-align: center;
  padding: 1.25rem;
  font-weight: 700;
}

.particulars-table tr:not(:first-child) {
  transition: background 0.3s ease;
}

.particulars-table tr:not(:first-child):hover {
  background: var(--light-cream);
}

.particulars-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--light-cream);
  vertical-align: middle;
}

.particulars-table td:first-child {
  background: var(--light-cream);
  font-weight: 600;
  color: var(--primary-brown);
  width: 35%;
  font-size: 1.05rem;
}

.particulars-table td:last-child {
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* Enhanced Info Sections */
.info-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(to bottom, var(--white), var(--light-cream));
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  border-left: 5px solid var(--primary-brown);
  transition: all 0.3s ease;
}

.info-section:hover {
  box-shadow: 0 6px 20px var(--shadow-dark);
  transform: translateY(-2px);
}

.info-section h3 {
  color: var(--primary-brown);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-brown);
}

.info-section h4 {
  color: var(--primary-brown);
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.info-section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.info-section ul,
.info-section ol {
  margin: 1.5rem 0 1.5rem 2rem;
  padding-left: 1rem;
}

.info-section li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.guideline-no-bullets {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.guideline-no-bullets p {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.guideline-no-bullets p::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-brown);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Enhanced Contact Section */
.contact-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.contact-section h3 {
  color: var(--primary-brown);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-brown);
}

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

.contact-person {
  background: linear-gradient(135deg, var(--light-cream), var(--white));
  padding: 1.75rem;
  border-radius: 12px;
  border: 2px solid var(--primary-brown);
  box-shadow: 0 3px 10px var(--shadow);
  transition: all 0.3s ease;
}

.contact-person:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px var(--shadow-dark);
  border-color: var(--accent-orange);
}

.contact-person h4 {
  color: var(--primary-brown);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-brown);
}

.contact-person p {
  margin: 0.5rem 0;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-person strong {
  color: var(--primary-brown);
  font-weight: 600;
}

/* Enhanced Immigration Addresses */
.immigration-addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.address-block {
  background: linear-gradient(135deg, var(--light-cream), var(--white));
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 3px 10px var(--shadow);
  transition: all 0.3s ease;
}

.address-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-dark);
}

.address-block h4 {
  color: var(--primary-brown);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-orange);
}

.address-block p {
  margin: 0.75rem 0;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Enhanced Journey Tables */
.return-journey-tables {
  margin: 2.5rem 0;
}

.return-journey-tables h4 {
  color: var(--primary-brown);
  font-size: 1.4rem;
  margin: 2.5rem 0 1.25rem 0;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-brown);
}

.journey-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px var(--shadow);
}

.journey-table th,
.journey-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--light-cream);
}

.journey-table th {
  background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journey-table td {
  background: var(--white);
  font-size: 1.05rem;
  color: var(--text-dark);
}

.journey-table tr:last-child td {
  border-bottom: none;
}

.journey-table tbody tr {
  transition: background 0.3s ease;
}

.journey-table tbody tr:hover {
  background: var(--light-cream);
}

/* Enhanced Letter Closing */
.letter-closing {
  margin: 3rem 0 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--light-cream), var(--white));
  border-radius: 12px;
  border-left: 5px solid var(--primary-brown);
  box-shadow: 0 4px 15px var(--shadow);
}

.letter-closing p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.letter-closing p:last-of-type {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--primary-brown);
}

.letter-closing strong {
  color: var(--primary-brown);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Responsive Design for Shibirarthi Section */
@media (max-width: 768px) {
  .subtab-container {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .subtab-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .subtab-content {
    padding: 1.5rem;
  }
  
  .particulars-section,
  .info-section,
  .contact-section {
    padding: 1.5rem;
  }
  
  .contact-points {
    grid-template-columns: 1fr;
  }
  
  .immigration-addresses {
    grid-template-columns: 1fr;
  }
  
  .journey-table {
    font-size: 0.9rem;
  }
  
  .journey-table th,
  .journey-table td {
    padding: 0.875rem;
  }
}

@media (max-width: 480px) {
  .subtab-button {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }
  
  .subtab-content {
    padding: 1.25rem;
  }
  
  .particulars-section h3,
  .info-section h3,
  .contact-section h3 {
    font-size: 1.4rem;
  }
}

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

/* Image loading improvements for Firefox */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo-text p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.login-btn {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-dark);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}



.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Styles */
.navigation {
    background: var(--white);
    border-bottom: 3px solid var(--primary-brown);
    box-shadow: 0 2px 5px var(--shadow);
    margin-top: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-brown);
    border-bottom-color: var(--primary-brown);
    background: var(--light-cream);
}

/* Dropdown under Shibirarthi in nav */
.has-dropdown { position: relative; }
.has-dropdown .arrow { font-size: 0.8rem; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 20px var(--shadow);
    border: 2px solid var(--primary-brown);
    border-radius: 10px;
    min-width: 280px;
    z-index: 1001;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--light-cream);
}
.dropdown-menu a:hover { background: var(--light-cream); color: var(--primary-brown); }
.has-dropdown:hover .dropdown-menu { display: block; }

/* Mobile dropdown - show on click instead of hover */
@media (max-width: 768px) {
    .has-dropdown:hover .dropdown-menu { display: none; }
    .has-dropdown.active .dropdown-menu { display: block; position: relative; min-width: 100%; }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-cream), var(--off-white));
    padding: 2rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-brown);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.event-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.event-info {
    text-align: left;
}

.info-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.info-label {
    font-weight: 600;
    color: var(--primary-brown);
    min-width: 100px;
    margin-right: 1rem;
}

.info-value {
    color: var(--text-dark);
    font-weight: 500;
}

.stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--primary-brown);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--primary-brown);
}

.login-cta {
    margin-top: 2rem;
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--light-cream);
    box-shadow: 0 5px 15px var(--shadow);
}
.login-cta h3 { color: var(--primary-brown); margin-bottom: 0.5rem; }
.login-cta p { margin-bottom: 1rem; }

.hero-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--secondary-brown);
    font-weight: 500;
}

/* About Section */
.about-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--primary-brown);
}

.about-text h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Documents Section */
.documents-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.document-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-top: 5px solid var(--primary-brown);
    text-align: center;
}

.document-card h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.document-card p {
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.document-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Donate Section */
.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.event-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.donation-options h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.contribution-tiers,
.ad-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tier-card,
.ad-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    border: 2px solid var(--light-cream);
    transition: all 0.3s ease;
}

.tier-card:hover,
.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
    border-color: var(--primary-brown);
}

.tier-card h4,
.ad-card h4 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tier-amount,
.ad-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.payment-info {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-brown);
}

.payment-info h4 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Profile and Transportation Sections */
.profile-content,
.transportation-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--primary-brown);
}

.profile-card,
.transportation-card {
    background: var(--white);
}

.profile-card h3,
.transportation-card h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.profile-card .info-item,
.transportation-card .info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: center;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 8px;
}

.profile-card .info-label,
.transportation-card .info-label {
    font-weight: 600;
    color: var(--primary-brown);
    min-width: 150px;
    margin-right: 1rem;
}

.profile-card .info-value,
.transportation-card .info-value {
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--primary-brown);
}

.contact-info h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-brown);
    min-width: 80px;
    margin-right: 1rem;
}

.contact-value {
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--accent-orange);
}

.contact-form h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-cream);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: var(--white);
}

.form-group select {
    cursor: pointer;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group .required {
    color: var(--accent-orange);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--secondary-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.btn-secondary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-secondary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--text-dark);
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.btn-silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: var(--text-dark);
    font-weight: 700;
}

.btn-silver:hover {
    background: linear-gradient(135deg, #A8A8A8, #808080);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

/* Footer */
.footer {
    background: var(--primary-brown);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.footer-text p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-text p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    position: relative;
}

.close {
    color: var(--text-dark);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: var(--primary-brown);
}

.login-form {
    margin-top: 2rem;
}

/* Media */
.media-filters { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-dark);
    border: 3px solid var(--primary-brown);
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.image-grid img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 4px 16px var(--shadow); border: 2px solid var(--light-cream); }

.login-note {
    font-size: 0.9rem;
    color: var(--secondary-brown);
    text-align: center;
}

.login-note a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-note a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.register-error {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background-color: #fee;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    color: #c0392b;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

/* Shibirarthi Letter Tab Styles */
.letter-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--primary-brown);
    line-height: 1.8;
    font-size: 1.1rem;
}

.letter-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-cream);
}

.letter-intro h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.info-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-brown);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.info-card h4 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-card ul {
    margin-left: 1.5rem;
}

.info-card li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.program-highlights {
    margin-bottom: 3rem;
}

.program-highlights h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.program-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-top: 5px solid var(--accent-orange);
    text-align: center;
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.program-item h4 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-item p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
}

.code-conduct,
.health-safety,
.contact-reminder,
.important-reminders {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-brown);
    margin-bottom: 2rem;
}

.code-conduct h3,
.health-safety h3,
.contact-reminder h3,
.important-reminders h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.code-conduct ul,
.health-safety ul,
.important-reminders ul {
    margin-left: 2rem;
}

.code-conduct li,
.health-safety li,
.important-reminders li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.health-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.closing-message {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--accent-orange);
    margin-bottom: 2rem;
}

.closing-message h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.closing-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.dharma-motto {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-cream);
    border-radius: 10px;
    border: 2px solid var(--primary-brown);
}

.dharma-motto p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.dharma-motto p:first-child {
    color: var(--primary-brown);
    font-weight: 600;
}

.dharma-motto p:last-child {
    color: var(--secondary-brown);
    font-style: italic;
}

.download-section {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-top: 5px solid var(--accent-orange);
}

.download-section h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.highlight-box {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-brown);
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--primary-brown);
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-orange);
    margin: 2rem 0;
}

.contact-info h3 {
    color: var(--primary-brown);
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 10px;
    font-style: italic;
    color: var(--secondary-brown);
}

.letter-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-cream);
    border-radius: 15px;
    border: 2px solid var(--primary-brown);
}

.letter-header h2 {
    color: var(--primary-brown);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.letter-header p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.letter-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.letter-body h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.letter-body h3:first-of-type {
    margin-top: 0;
}

.letter-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.letter-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.letter-body li {
    margin-bottom: 0.5rem;
}

.items-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.essential-items,
.recommended-items {
    background: var(--light-cream);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--primary-brown);
}

.essential-items h4,
.recommended-items h4 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details {
    background: var(--light-cream);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--accent-orange);
    margin: 1rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Letter closing styling is now in the enhanced section above */

.dharma-motto {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-cream);
    border-radius: 10px;
    border: 2px solid var(--primary-brown);
}

.dharma-motto p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.dharma-motto p:first-child {
    color: var(--primary-brown);
    font-weight: 600;
}

.dharma-motto p:last-child {
    color: var(--secondary-brown);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text p {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .login-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 10px var(--shadow);
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .navigation.mobile-menu-open {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        text-align: left;
        border-bottom: 1px solid var(--light-cream);
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-bottom-color: var(--primary-brown);
        border-bottom-width: 3px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .event-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .donate-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contribution-tiers,
    .ad-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .documents-content {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .letter-content {
        padding: 2rem;
    }
    
    .items-list {
        grid-template-columns: 1fr;
    }
    
    .letter-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-points {
        grid-template-columns: 1fr;
    }
    
    .immigration-addresses {
        grid-template-columns: 1fr;
    }
    
    .particulars-table td:first-child {
        width: 40%;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .quick-navigation {
        padding: 1.5rem;
    }
    
    .quick-navigation p {
        font-size: 1rem;
    }
    
    .section-dropdown {
        min-width: 200px;
        font-size: 0.9rem;
    }
}

/* Location Map Section Styles */
.about-location {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow);
    border: 3px solid var(--primary-brown);
    position: relative;
    overflow: hidden;
}

.about-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-orange), var(--primary-brown));
}

.about-location h3 {
    color: var(--primary-brown);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.about-location h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-orange));
    border-radius: 2px;
}

.about-location-map {
    position: relative;
    margin: 2rem 0;
    text-align: center;
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-brown);
    transition: all 0.3s ease;
}

.about-location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-dark);
    border-color: var(--accent-orange);
}

.about-location-map img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.3s ease;
    border: 3px solid var(--white);
}

.about-location-map:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 35px var(--shadow-dark);
}

.about-location-map p {
    margin-top: 1.5rem;
    color: var(--primary-brown);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--light-cream);
    position: relative;
}

.about-location-map p::before {
    content: '📍';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Location Map Responsive Design */
@media (max-width: 768px) {
    .about-location {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .about-location h3 {
        font-size: 1.6rem;
    }
    
    .about-location-map {
        padding: 1.5rem;
    }
    
    .about-location-map p {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-location {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .about-location h3 {
        font-size: 1.4rem;
    }
    
    .about-location-map {
        padding: 1rem;
    }
    
    .about-location-map p {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
}

/* Quick Navigation Styles */
.quick-navigation {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--accent-orange);
    margin-bottom: 3rem;
}

.quick-navigation p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.quick-navigation strong {
    color: var(--primary-brown);
    font-weight: 600;
}

.dropdown-navigation {
    text-align: center;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 10px;
    border: 2px solid var(--primary-brown);
}

.section-dropdown {
    padding: 0.8rem 1rem;
    border: 2px solid var(--primary-brown);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
}

.section-dropdown:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.section-dropdown:hover {
    border-color: var(--accent-orange);
}

.section-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.click-hint {
    color: var(--secondary-brown);
    font-size: 0.9rem;
    font-style: italic;
}

/* Additional styles for the exact letter content - Enhanced versions are above */

/* Particulars table styling is now in the enhanced section above */

/* Contact points and contact person styling is now in the enhanced section above */

/* Return journey tables and journey table styling is now in the enhanced section above */

/* Immigration addresses and address block styling is now in the enhanced section above */

/* Profile Info Grid */
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-actions {
    margin-top: 2rem;
    text-align: center;
}

/* Badge Styles */
.badge-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 3px solid var(--primary-brown);
    max-width: 500px;
    margin: 0 auto;
}

/* Badge Modal - Mobile and Web Responsive */
.badge-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    position: relative;
}

@media (max-width: 768px) {
    .badge-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        padding: 1rem;
    }
    
    .badge-container {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .badge-content {
        text-align: center;
    }
    
    .badge-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badge-actions button {
        width: 100%;
    }
}

.badge-content {
    text-align: center;
}

.badge-logo {
    width: 120px;
    height: auto;
    max-height: 120px;
    margin: 0 auto 1.5rem;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-name {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.badge-details {
    margin-bottom: 2rem;
    text-align: left;
    background: var(--light-cream);
    padding: 1.5rem;
    border-radius: 10px;
}

.badge-details p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.badge-details strong {
    color: var(--primary-brown);
    font-weight: 600;
}

.badge-barcode-container {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--light-cream);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-barcode-container svg {
    max-width: 100%;
    height: auto;
}

.badge-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Transportation Form Styles */
.transportation-display {
    margin-bottom: 2rem;
}

.transportation-actions {
    margin-top: 2rem;
    text-align: center;
}

.transportation-form {
    max-width: 600px;
    margin: 0 auto;
}

.transportation-form .form-group {
    margin-bottom: 1.5rem;
}

.transportation-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 1rem;
}

.transportation-form input[type="text"],
.transportation-form input[type="date"],
.transportation-form input[type="time"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-cream);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.transportation-form input:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-actions button {
    padding: 0.8rem 1.5rem;
}

/* Profile Tiles Styling */
.profile-header-actions {
    margin-bottom: 2rem;
    text-align: center;
}

.profile-tiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.profile-tile {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow);
    border: 1px solid var(--light-cream);
}

.tile-title {
    color: var(--primary-brown);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-brown);
}

.tile-content .info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.8rem;
    gap: 0.3rem;
}

.tile-content .info-label {
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 0.9rem;
}

.tile-content .info-value {
    color: var(--text-dark);
    word-wrap: break-word;
    word-break: break-word;
}

/* Transportation Section Styling */
.transportation-section-content {
    position: relative;
}

.transportation-sections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .transportation-sections-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.transportation-section {
    background: var(--light-cream);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-brown);
}

.section-title {
    color: var(--primary-brown);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Transportation Section Buttons */
.transportation-section-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.transportation-section-btn {
    flex: 1;
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    background: #f5f5f5;
    border: 2px solid var(--primary-brown);
    border-radius: 8px;
    color: var(--primary-brown);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    outline: none;
}

.transportation-section-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}

.transportation-section-btn:hover {
    background: var(--light-cream);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.transportation-section-btn.active {
    background: var(--primary-brown);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.transportation-section-btn.active:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.no-info {
    color: #666;
    font-style: italic;
    margin: 0.5rem 0;
}

.transportation-section-form {
    background: var(--light-cream);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-brown);
}

.transportation-section-form h4 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.required {
    color: #e74c3c;
}

/* Tours Styling */
.profile-tours-section {
    margin-top: 2rem;
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px var(--shadow);
}

.profile-tours-section h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Profile Tabs Container - Similar to Tours Tabs */
.profile-tabs-container {
    margin-top: 2rem;
}

.profile-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--light-cream);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.profile-tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.profile-tab-btn:hover {
    color: var(--primary-brown);
    background: var(--light-cream);
}

.profile-tab-btn.active {
    color: var(--primary-brown);
    border-bottom-color: var(--primary-brown);
    background: var(--light-cream);
}

.profile-tab-content {
    position: relative;
    min-height: 0;
}

.profile-tab-pane {
    display: none;
    width: 100%;
    overflow: hidden;
}

.profile-tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

/* User Profile Cards Container */
.user-profiles-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Expandable User Profile Card */
.user-profile-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    border: 1px solid var(--light-cream);
    overflow: hidden;
    transition: all 0.3s ease;
}

.user-profile-card:hover {
    box-shadow: 0 4px 15px var(--shadow-dark);
    border-color: var(--primary-brown);
}

.user-profile-card.expanded {
    border-color: var(--primary-brown);
    border-width: 2px;
}

/* Card Header - Clickable */
.user-profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--light-cream), var(--white));
    transition: background 0.3s ease;
    user-select: none;
}

.user-profile-card-header:hover {
    background: linear-gradient(135deg, var(--light-cream), #faf9f5);
}

.user-profile-card-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.user-profile-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.user-profile-name strong {
    color: var(--primary-brown);
    font-size: 1.3rem;
    font-weight: 600;
}

.user-profile-id {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--light-cream);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

.user-profile-basic-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.user-profile-badge {
    background: var(--primary-brown);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.user-profile-card-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-brown);
    color: var(--white);
    transition: transform 0.3s ease;
}

.user-profile-card.expanded .user-profile-card-toggle {
    transform: rotate(0deg);
}

.toggle-icon {
    font-size: 0.9rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Card Content - Expandable Section */
.user-profile-card-content {
    padding: 1.5rem;
    background: var(--white);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 5000px;
    }
}

.user-profile-card-actions {
    margin: 0 auto 1rem auto;
    padding: 1rem 0;
    border-bottom: 2px solid var(--light-cream);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.tours-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--light-cream);
    margin-bottom: 1.5rem;
}

.tour-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tour-tab:hover {
    color: var(--primary-brown);
    background: var(--light-cream);
}

.tour-tab.active {
    color: var(--primary-brown);
    border-bottom-color: var(--primary-brown);
    background: var(--light-cream);
}

.tour-tab-content {
    position: relative;
    min-height: 200px;
}

.tour-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tour-tab-pane.active {
    display: block;
}

.tour-content {
    text-align: center;
    padding: 1rem;
}

.tours-display {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px var(--shadow);
}

.tours-content-display {
    text-align: center;
    margin: 2rem 0;
}

.tour-message {
    font-size: 2rem;
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tour-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1rem;
}

.tour-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    margin-bottom: 1rem;
}

.tours-actions {
    text-align: center;
    margin-top: 2rem;
}

.tours-form {
    max-width: 600px;
    margin: 0 auto;
}

.warning-text {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffc107;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-cream);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* Admin Dashboard Styles */
.admin-dashboard-content {
    margin-top: 2rem;
}

.metrics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--shadow-dark);
}

.metric-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.metric-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.analytics-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px var(--shadow);
    margin-bottom: 2rem;
}

.analytics-section h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--light-cream);
    padding-bottom: 0.5rem;
}

.section-description {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.data-table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.data-table thead {
    background: var(--light-cream);
}

.data-table th {
    padding: 0.75rem;
    text-align: left;
    color: var(--dark-brown);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-brown);
}

.data-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--light-cream);
}

.data-table tbody tr:hover {
    background: var(--off-white);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .metrics-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .analytics-section {
        padding: 1rem;
    }
    
    .data-table {
        font-size: 0.85rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }
}

/* ============================================
   CHECKIN MODULE STYLES
   ============================================ */

/* Checkin Type Tabs */
.checkin-type-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--shadow);
}

.checkin-type-tab {
    padding: 0.75rem 1.5rem;
    background: var(--light-cream);
    border: 2px solid var(--primary-brown);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-brown);
    transition: all 0.3s ease;
}

.checkin-type-tab:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

.checkin-type-tab.active {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

/* Search Section */
.checkin-search-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--shadow);
    margin-bottom: 2rem;
}

.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.search-tab-btn {
    padding: 0.5rem 1rem;
    background: var(--light-cream);
    border: 2px solid var(--primary-brown);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-tab-btn:hover {
    background: var(--off-white);
}

.search-tab-btn.active {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.search-mode {
    display: none;
}

.search-mode.active {
    display: block;
}

.barcode-scanner-section {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.form-input {
    padding: 0.75rem;
    border: 2px solid var(--light-cream);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    flex: 1;
    min-width: 200px;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.advanced-search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Participant Info Card */
.participant-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--shadow);
    margin-bottom: 2rem;
    border: 2px solid var(--light-cream);
}

.participant-details p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.participant-search-results ul {
    list-style: none;
    padding: 0;
}

.participant-search-results li {
    margin: 0.5rem 0;
}

/* Participant Lookup Styles */
.participant-fields-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.field-row {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.field-row label {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.field-row .field-value {
    color: var(--text-dark);
    word-wrap: break-word;
    line-height: 1.5;
}

.field-row input.form-input {
    margin-top: 0.25rem;
}

/* Checkin Form */
.checkin-form-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--shadow);
    margin-bottom: 2rem;
    border: 2px solid var(--light-cream);
}

.checkin-form-card .form-group {
    margin-bottom: 1.5rem;
}

.checkin-form-card label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
    font-weight: 600;
}

/* Recent Checkins */
.recent-checkins-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--shadow);
    margin-bottom: 2rem;
}

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

.recent-checkin-item {
    padding: 1rem;
    border-bottom: 1px solid var(--light-cream);
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 1rem;
    align-items: center;
}

.recent-checkin-item:last-child {
    border-bottom: none;
}

.recent-checkin-item:hover {
    background: var(--off-white);
}

.checkin-item-name {
    font-weight: 600;
    color: var(--primary-brown);
}

.checkin-item-id {
    color: var(--text-dark);
    font-size: 0.9em;
}

.checkin-item-time {
    color: var(--text-dark);
    font-size: 0.85em;
}

.checkin-item-by {
    color: var(--text-dark);
    font-size: 0.85em;
    font-style: italic;
}

/* Checkin History */
.checkin-history-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--shadow);
}

.history-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 0.9em;
}

/* Batch Checkin */
.batch-preview {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--light-cream);
}

.batch-preview-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    max-height: 300px;
    overflow-y: auto;
}

.batch-preview-list li {
    padding: 0.5rem;
    background: var(--white);
    margin: 0.25rem 0;
    border-radius: 4px;
}

.batch-results-list {
    max-height: 400px;
    overflow-y: auto;
    margin: 1rem 0;
}

.batch-result-item {
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.batch-result-item.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.batch-result-item.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Checkin Status for Profile */
.checkin-status-section {
    margin-top: 2rem;
    padding-top: 2rem;
}

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

.checkin-status-item {
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--light-cream);
    background: var(--white);
    box-shadow: 0 2px 4px var(--shadow);
}

.checkin-status-item.checked-in {
    border-color: #4CAF50;
    background: #f1f8f4;
}

.checkin-status-item.not-checked-in {
    border-color: #ccc;
    background: #f9f9f9;
    opacity: 0.7;
}

.checkin-status-type {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.checkin-status-item.checked-in .checkin-status-type {
    color: #2e7d32;
}

.checkin-status-time {
    font-size: 0.9em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.checkin-status-location,
.checkin-status-details {
    font-size: 0.85em;
    color: var(--text-dark);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Checkin Notifications */
.checkin-notification {
    animation: slideInRight 0.3s ease;
}

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

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

/* Responsive Design for Checkin */
@media (max-width: 768px) {
    .checkin-type-tabs {
        flex-direction: column;
    }
    
    .checkin-type-tab {
        width: 100%;
    }
    
    .barcode-scanner-section {
        flex-direction: column;
    }
    
    .form-input {
        width: 100%;
    }
    
    .recent-checkin-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .history-filters {
        grid-template-columns: 1fr;
    }
    
    .checkin-status-grid {
        grid-template-columns: 1fr;
    }
}

/* User Management Styles */
.user-creation-message {
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    border-left: 4px solid;
}

.user-creation-message.success {
    background: #f1f8f4;
    border-color: #4CAF50;
    color: #2e7d32;
}

.user-creation-message.error {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

.user-creation-message.info {
    background: #e3f2fd;
    border-color: #2196F3;
    color: #1565c0;
}

.user-creation-message code {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.role-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
}

.role-badge-admin {
    background: #ff6b35;
    color: white;
}

.role-badge-volunteer {
    background: #4CAF50;
    color: white;
}

.user-creation-form {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.user-creation-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
}

.user-creation-form .form-group {
    margin-bottom: 1rem;
}

.user-creation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.user-management-list {
    margin-top: 2rem;
}

.user-management-list h3 {
    margin-bottom: 1rem;
    color: var(--primary-brown);
}