body{
 background-color:#FAFAF9;
 font-family: "Funnel Sans", sans-serif;
}

/* Dashboard Styles */
.dashboard-main {
  min-height: calc(100vh - 80px);
  padding: 40px 20px;
  background: #FAFAF9
}

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

.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.dashboard-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 30px;
}

.btn-primary {
  background: linear-gradient(135deg, #01387A 0%, #0056b3 100%);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 56, 122, 0.35);
}

.btn-secondary {
  background: #f8f9fa;
  color: #495057;
  padding: 8px 16px;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.btn-danger {
  background: #dc3545;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background: #c82333;
}








.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.campaign-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Campaign Header with Icon and Number */
.campaign-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.campaign-icon {
  font-size: 16px;
  margin-right: 8px;
  color: #666;
}

.campaign-number {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Campaign Title */
.campaign-title {
  font-size: 18px;
  font-weight: 600;
  color: #01387A;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* Campaign Description */
.campaign-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.campaign-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.campaign-status.published {
  background: #d4edda;
  color: #155724;
}

.campaign-status.draft {
  background: #fff3cd;
  color: #856404;
}

.campaign-content {
  padding: 25px;
}

.campaign-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
}

.campaign-category {
  color: #667eea;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.campaign-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.campaign-goal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.goal-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.goal-label {
  color: #6c757d;
  font-size: 0.9rem;
}

.campaign-organizer {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.campaign-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.loading, .no-campaigns, .error {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

.error {
  color: #dc3545;
}

/* Campaign Modal */
.campaign-modal-content {
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}

.campaign-detail h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2rem;
}

.campaign-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.campaign-meta .category {
  background: #01387A;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.campaign-meta .status {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.campaign-goal-large {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, #01387A 0%, #4fc3f7 100%);
  color: white;
  border-radius: 15px;
}

.campaign-goal-large .amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.campaign-goal-large .label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.campaign-description-full {
  margin: 30px 0;
}

.campaign-description-full h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.campaign-description-full p {
  line-height: 1.8;
  color: #495057;
}

.campaign-organizer-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.campaign-organizer-info h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.campaign-organizer-info p {
  margin-bottom: 8px;
  color: #495057;
}

.campaign-dates {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
  color: #6c757d;
  font-size: 0.9rem;
}

.campaign-dates p {
  margin-bottom: 5px;
}

/* Login Prompt Styles */
.login-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
}

.login-prompt-content {
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.login-prompt-content h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.login-prompt-content p {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Auth Modal Styles */
.auth-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.auth-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.3s ease;
}

.auth-close-btn:hover {
  color: #333;
}

#user-info {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #495057;
  text-align: center;
}

#logout-btn {
  width: 100%;
  margin-top: 15px;
  background: #dc3545;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#logout-btn:hover {
  background: #c82333;
}

/* Search Section Styles */
.search-section {
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-container {
  position: relative;
  margin-bottom: 15px;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 50px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.search-input:focus {
  border-color: #01387A;
  box-shadow: 0 0 0 3px rgba(1, 56, 122, 0.1);
}

.clear-search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.clear-search-btn:hover {
  background: #c82333;
}

.search-filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 10px 15px;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  font-size: 0.9rem;
  background: white;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
  min-width: 150px;
}

.filter-select:focus {
  border-color: #01387A;
}

.filter-select:hover {
  border-color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-header h1 {
    font-size: 2rem;
  }
  
  .campaigns-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .campaign-actions {
    flex-direction: column;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .login-prompt-content {
    padding: 40px 30px;
    margin: 20px;
  }
  
  .login-prompt-content h2 {
    font-size: 1.8rem;
  }
  
  .auth-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .search-section {
    padding: 15px;
    margin: 20px 0;
  }
  
  .search-filters {
    flex-direction: column;
  }
  
  .filter-select {
    min-width: 100%;
  }
}

/* nav bar css */
nav {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  font-size: 20px;
  position: relative;
  /* Remove justify-content and gap here */
}

nav a {
  text-decoration: none;
  color: inherit;
}

.nav-center {
  display: flex;
  left:26%;
  justify-content: center;
  align-items: center;
  gap: 48px;
  position: relative;
}

.circular-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 32px; /* Space between logo and center nav */
  margin-left: 0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.logo-link .circular-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(1, 56, 122, 0.3);
}

/* Brand wordmark logo for nav */
.brand-logo {
  height: 48px; /* keep layout height small so nav height doesn't grow */
  width: auto;
  object-fit: contain;
  margin-right: 40px; /* a bit more spacing since we visually scale */
  flex-shrink: 0;
  display: inline-block;
  transform: scale(1.5); /* visually bigger, no layout change */
  transform-origin: left center;
}

/* Logo link styling */
.logo-link {
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .brand-logo {
    transform: scale(1.25);
    margin-right: 28px;
  }
}
.about img{
  width : 10px;
  height : 10px;
}
.search{
  background-color: #ffffff;
  color: #000;
  padding:8px;
  border-radius: 30px ;
  border: 1px solid #707070;
  box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.1);
}
.search img{
  width : 15px;
  height : 15px;
}
.logo img{
  width : 200px;
  margin-top: 10px;
  margin-left: 0; /* Remove large left margin */
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.just-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 16px; /* Reduced space between logo and images */
}
.just-img img {
  width: 500px;
  height: 300px;
  object-fit: cover;
}
.start-camp {
  background-color:#01387A ; /* Button background color */
  color: white; /* Button text color */
  padding: 10px 20px; /* Button padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 16px; /* Font size */
  text-decoration: none; /* Remove underline from link */
}
.start-camp:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.quote1{
  font-size:xx-large;
  text-align: center;

}
.line{
  font-size: large;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* space between items */
  background: #01387A ;/* soft yellow background */
  padding: 28px 0;
  color: white;
  width: 100vw;           /* Full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: none;
}
.line img{
  width: 30px;
  height: 30px;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* Makes icons appear white */
}

/* Auth Modal Styles */
.auth-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.35);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.auth-modal.active {
  display: flex;
}
.auth-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 400px;
  width: 90vw;
  margin: auto;
  padding: 32px 18px 18px 18px;
  position: relative;
  box-shadow: 0 8px 32px rgba(1,56,122,0.13);
}
.auth-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
#logout-btn {
  margin: 12px 0 18px 0;
  padding: 8px 18px;
  background: #01387A;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#logout-icon {
 width: 20px;
  height: 20px;
  margin-left: 6px;
  vertical-align: middle;
  cursor: pointer;
  display: none;
  position: relative;
  top: 3px;
}

/* how it works section */

.how-it-works {
  max-width: 800px;
  margin: 60px auto 0 auto;
  padding: 0 12px;
}

.howit-header {
  text-align: center;
  margin-bottom: 36px;
}

.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.2em;
  line-height: 1.1;
  letter-spacing: -1px;
}

.how-it-works h2 span {
  font-weight: 400;
  font-size: 2rem;
  color: #01387A;
  display: block;
  margin-top: 0.2em;
}

.howit-desc {
  color: #555;
  font-size: 1.15rem;
  margin-top: 0.5em;
  margin-bottom: 0;
}

.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(1,56,122,0.07);
  border: 2.5px solid #e3f0ff;
  padding: 36px 36px 32px 36px;
  gap: 28px;
  position: relative;
  transition: box-shadow 0.18s;
}

.step-card:hover {
  box-shadow: 0 8px 40px 0 rgba(1,56,122,0.13);
  border-color: #b3d1f7;
}

.step-number {
  min-width: 56px;
  min-height: 56px;
  background: #f6faff;
  color: #01387A;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(1,56,122,0.06);
  margin-right: 10px;
  margin-top: 4px;
  letter-spacing: -1px;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #01387A;
  margin-bottom: 8px;
}

.step-desc {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .how-it-works {
    padding: 0 2vw;
  }
  .how-it-works h2 {
    font-size: 1.5rem;
  }
  .how-it-works h2 span {
    font-size: 1.1rem;
  }
  .steps-vertical {
    gap: 18px;
  }
  .step-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 16px 10px;
    gap: 10px;
  }
  .step-number {
    min-width: 38px;
    min-height: 38px;
    font-size: 1.2rem;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .step-title {
    font-size: 1.05rem;
  }
  .step-desc {
    font-size: 0.97rem;
  }
}

/*featured campaign*/
/* IMPROVED FEATURED CAMPAIGNS SECTION */

.featured-campaigns {
  max-width: 100%;
  margin: 80px auto 0 auto;
  padding: 60px 40px 80px 40px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-radius: 20px;
}

.featured-campaigns h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #01387A;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* IMPROVED SEARCH AND FILTERS */
.campaign-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto 50px auto;
  max-width: 900px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.campaign-search {
  flex: 1;
  min-width: 280px;
  padding: 14px 20px 14px 50px;
  border-radius: 50px;
  border: 2px solid #d1e3f7;
  font-size: 1rem;
  outline: none;
  background: white;
  box-shadow: 0 2px 12px rgba(1, 56, 122, 0.08);
  transition: all 0.3s ease;
}

.campaign-search:focus {
  border-color: #01387A;
  box-shadow: 0 4px 20px rgba(1, 56, 122, 0.15);
  transform: translateY(-1px);
}

.campaign-search::placeholder {
  color: #999;
  font-size: 0.95rem;
}

.campaign-category {
  padding: 14px 24px;
  border-radius: 50px;
  border: 2px solid #d1e3f7;
  font-size: 1rem;
  outline: none;
  background: white;
  cursor: pointer;
  font-weight: 500;
  color: #01387A;
  min-width: 180px;
  box-shadow: 0 2px 12px rgba(1, 56, 122, 0.08);
  transition: all 0.3s ease;
  appearance: none;
  padding-right: 45px;
}

.campaign-category:hover {
  border-color: #01387A;
  box-shadow: 0 4px 16px rgba(1, 56, 122, 0.12);
}

.campaign-category:focus {
  border-color: #01387A;
  box-shadow: 0 4px 20px rgba(1, 56, 122, 0.15);
}

/* IMPROVED CAMPAIGNS GRID - MORE SPACIOUS */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* IMPROVED CAMPAIGN CARDS - LESS CONGESTED */
.campaign-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(1, 56, 122, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #e8f2ff;
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(1, 56, 122, 0.18);
  border-color: #b3d1f7;
}

.campaign-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}

/* CAMPAIGN CONTENT AREA */
.campaign-content-area {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.campaign-card h3 {
  font-size: 1.35rem;
  color: #01387A;
  margin: 0 0 12px 0;
  text-align: left;
  font-weight: 700;
  line-height: 1.3;
}

.campaign-card p {
  font-size: 1.05rem;
  color: #555;
  margin: 0 0 20px 0;
  text-align: left;
  line-height: 1.6;
  flex-grow: 1;
}

/* IMPROVED PROGRESS BAR */
.progress-bar {
  width: 100%;
  height: 10px;
  background: #e8f2ff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(1, 56, 122, 0.08);
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  border-radius: 10px;
  transition: width 0.6s ease;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.progress-info {
  font-size: 15px;
  color: #01387A;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-info .raised {
  color: #059669;
}

/* IMPROVED DONATE BUTTON */
.donate-btn {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  letter-spacing: 0.3px;
}

.donate-btn:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

.donate-btn:active {
  transform: translateY(0);
}

/* CATEGORY BADGE (Optional addition) */
.campaign-category-badge {
  display: inline-block;
  background: #01387A;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .campaigns-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .featured-campaigns {
    padding: 40px 20px 60px 20px;
  }

  .featured-campaigns h2 {
    font-size: 2.2rem;
  }

  .campaign-filters {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .campaign-search {
    min-width: 100%;
  }

  .campaign-category {
    min-width: 100%;
  }

  .campaigns-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .campaign-img {
    height: 200px;
  }

  .campaign-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .featured-campaigns h2 {
    font-size: 1.8rem;
  }

  .campaign-content-area {
    padding: 20px;
  }

  .campaign-img {
    height: 180px;
  }
}

/* why choose us section */

.why-choose-us {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  padding: 60px 20px;
  text-align: center;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(rgba(250,250,249,0.85), rgba(255, 255, 255, 0.85)), url('photos/impactimg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.trust-carousel {
  position: relative;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  z-index: 1;
}

.trust-card {
   display: none;
  flex-direction: column;
  align-items: center;
  padding: 70px 60px 60px 60px;
  width: 600px;
  min-height: 340px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  font-size: 1.35rem;
  position: relative;
  border-radius: 36px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.6);
}

.trust-card.active {
  display: flex;
  opacity: 1;
  position: relative;
  z-index: 2;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #01387A;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(1,56,122,0.13);
  opacity: 0.8;
}
.carousel-arrow.left {
  left: 12px;
}
.carousel-arrow.right {
  right: 12px;
}
.carousel-arrow:hover {
  background: #01387A;
  opacity: 1;
}

.trust-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 28px;
}

@media (max-width: 700px) {
  .trust-card, .trust-card.active {
    width: 98vw;
    min-width: unset;
    padding: 32px 10px 28px 10px;
    font-size: 1.1rem;
    border-radius: 20px;
  }
  .carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    left: 2px;
    right: 2px;
  }
  .trust-icon {
   width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }
}

/* impact stories section */

.impact-stories {
  background-color: #dbeafb;
  max-width: 100%;
  margin: 70px auto 0 auto;
  padding: 20px 20px 60px 20px;
  text-align: center;
  border-radius: 20px;
}

.impact-stories h2 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 36px;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.story-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(1,56,122,0.07);
  padding: 24px 18px 18px 18px;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s;
}

.story-card:hover {
  box-shadow: 0 8px 32px 0 rgba(1,56,122,0.13);
}

.story-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.story-card blockquote {
  font-size: 1.08rem;
  color: #333;
  font-style: italic;
  margin: 0 0 18px 0;
  line-height: 1.6;
  text-align: left;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #01387A;
}

.story-author span {
  color: #01387A;
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .stories-grid {
    gap: 20px;
  }
  .story-card {
    width: 90vw;
    max-width: 340px;
  }
}
@media (max-width: 600px) {
  .stories-grid {
    flex-direction: column;
    gap: 18px;
  }
  .story-card {
    width: 98vw;
    max-width: unset;
  }
}

/* Start a Campaign CTA */
.cta-campaign {
  background: linear-gradient(90deg, #01387A 60%, #4fc3f7 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px 50px 20px;
  margin: 60px 0 0 0;
  border-radius: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-campaign h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.cta-campaign p {
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.cta-btn {
  background: #fff;
  color: #01387A;
  padding: 16px 38px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 12px 0 rgba(1,56,122,0.07);
}
.cta-btn:hover {
  background: #01387A;
  color: #fff;
  border: 2px solid #fff;
}

/* About Us Teaser */
.about-teaser {
  max-width: 100%;
  margin: 60px auto 0 auto;
  text-align: center;
  padding: 40px 20px 30px 20px;
  border-bottom: 1px solid rgb(160, 160, 160);
  border-top: 1px solid rgb(160, 160, 160);
  background-color: linear-gradient(135deg, #01387A 0%, #4fc3f7 100%);
}
.about-teaser h2 {
  color: #01387A;
  font-size: 2rem;
  margin-bottom: 14px;
}
.about-teaser p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.about-link {
  color: #01387A;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: text-decoration 0.18s;
}
.about-link:hover {
  text-decoration: underline;
}

/* About Page */
.about-hero {
  background: linear-gradient(90deg, #01387A 60%, #4fc3f7 100%);
  color: #fff;
  text-align: center;
  padding: 70px 20px 60px 20px;
  margin: 0 0 30px 0;
}
.about-hero h1 { font-size: 2.6rem; margin-bottom: 10px; }
.about-hero p { font-size: 1.15rem; opacity: 0.95; }

.about-main { background: #FAFAF9; }
.about-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.about-section { padding: 40px 0; }
.about-section.alt { background: #f6faff; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: center; }
.about-visual img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 6px 24px rgba(1,56,122,0.15); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 20px; }
.value-item { background: #fff; border: 1px solid #e3f0ff; border-radius: 12px; padding: 18px; box-shadow: 0 2px 10px rgba(1,56,122,0.06); }
.value-emoji { font-size: 1.8rem; margin-bottom: 8px; }

.checklist { margin: 10px 0 0 0; padding-left: 18px; }
.checklist li { margin: 8px 0; }

.diff-list { margin: 10px 0 0 0; padding-left: 18px; }
.diff-list li { margin: 8px 0; }

.about-cta {
  background: linear-gradient(rgba(1,56,122,0.6), rgba(1,56,122,0.6)), url('photos/impactimg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 60px 20px 50px 20px;
  margin: 40px 0 0 0;
  position: relative;
  overflow: hidden;
}

.about-cta-bg {
  display: none;
}

.about-cta h2 { font-size: 2.2rem; margin-bottom: 12px; position: relative; z-index: 1; }
.about-cta p { font-size: 1.1rem; margin-bottom: 22px; position: relative; z-index: 1; }
.about-cta .cta-btn { position: relative; z-index: 1; }

/* FAQ Teaser */
.faq-teaser {
  max-width: 900px;
  margin: 60px auto 0 auto;
  padding: 40px 20px 30px 20px;
  border-radius: 14px;
}
.faq-teaser h2 {
  color: #01387A;
  font-size: 2rem;
  margin-bottom: 18px;
  text-align: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(1,56,122,0.07);
  padding: 0;
  font-size: 1rem;
  border: 1px solid #e3f0ff;
  overflow: hidden;
  transition: box-shadow 0.18s;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(1,56,122,0.13);
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  outline: none;
  color: #01387A;
  font-size: 1.08rem;
  font-weight: 600;
  user-select: none;
  transition: background 0.18s;
}

.faq-item[open] summary {
  background: #f6faff;
}

.faq-item p {
  padding: 0 20px 16px 20px;
  color: #444;
  margin: 0;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #01387A;
  color: #fff;
  text-align: center;
  padding: 36px 10px 18px 10px;
  margin-top: 60px;
}
.footer-links {
  margin-bottom: 18px;
}
.footer-links a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-size: 1rem;
  transition: text-decoration 0.18s;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-bottom: 16px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  margin: 0 8px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  transition: filter 0.18s;
}
.footer-social a img:hover {
  filter: brightness(0.8) invert(1);
}
.footer-tagline {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 1px;
}
.footer-credits {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #c7e0ff;
  letter-spacing: 0.5px;
}
/* Responsive tweaks */
@media (max-width: 700px) {
  .cta-campaign, .about-teaser, .faq-teaser {
    padding: 30px 8px;
  }
  .footer-links a {
    margin: 0 6px;
    font-size: 0.95rem;
  }
}




/* Start a Campaign Nav */
.start-camp-nav {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(1,56,122,0.07);
}
.start-camp-nav .nav-center {
  display: flex;
  left:29%;
  justify-content: center;
  align-items: center;
  gap: 48px;
  position: relative;
}


/* Main Content */
.main-content {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAF9;
}

/* Campaign Form Card */
.campaign-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
}
.campaign-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(1,56,122,0.09);
  padding: 36px 32px 28px 32px;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto;
}
.campaign-form-card h2 {
  text-align: center;
  color: white;
  margin-bottom: 10px;
  background: #01387A;
  padding: 10px 10px;
  border-radius: 8px;
}
.campaign-form-card label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #01387A;
  gap: 6px;
}
.campaign-form-card input[type="text"],
.campaign-form-card input[type="number"],
.campaign-form-card select,
.campaign-form-card textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1.5px solid #b3d1f7;
  font-size: 1rem;
  margin-top: 2px;
  margin-bottom: 2px;
  outline: none;
  transition: border 0.18s;
}
.campaign-form-card input:focus,
.campaign-form-card select:focus,
.campaign-form-card textarea:focus {
  border: 1.5px solid #01387A;
}
.goal-input {
  display: flex;
  align-items: center;
  gap: 6px;
}
.goal-input span {
  font-size: 1.2rem;
  color: #01387A;
  font-weight: bold;
}
.campaign-form-card textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 200px;
}
.char-count {
  font-size: 0.95rem;
  color: #888;
  text-align: right;
  margin-top: 2px;
}
.campaign-form-card fieldset {
  border: 1.5px solid #b3d1f7;
  border-radius: 8px;
  padding: 12px 10px 10px 10px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.campaign-form-card legend {
  color: #01387A;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 6px;
}
.form-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 10px;
}
.form-actions button {
  flex: 1;
  background: #01387A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}
.form-actions button:hover {
  background: #0056b3;
}
@media (max-width: 600px) {
  .campaign-form-card {
    padding: 18px 4vw 16px 4vw;
    max-width: 98vw;
  }
}




/* UPDATED NAVIGATION FOR DASHBOARD AND START-A-CAMPAIGN PAGES */

/* Remove the old .start-camp-nav styles and use the same nav as homepage */
nav {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  font-size: 20px;
  position: relative;
  background: white;
  box-shadow: 0 2px 12px 0 rgba(1,56,122,0.07);
}

nav a {
  text-decoration: none;
  color: inherit;
}

/* Center the navigation items */
.nav-center {
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  gap: 48px;
  position: absolute;
}

/* Gradient nav variant for Dashboard and Start-a-campaign */
.gradient-nav {
  background: linear-gradient(90deg, #01387A 0%, #4fc3f7 100%);
  color: #FAFAF9;
}

.gradient-nav a {
  color: #FAFAF9;
}

/* Keep the search pill text black on gradient nav */
.gradient-nav .search {
  color: #000;
  background-color: #ffffff;
  border: 1px solid #707070;
  box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.1);
}

.circular-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 32px;
  margin-left: 0;
  flex-shrink: 0;
}

.about img {
  width: 10px;
  height: 10px;
}

.search {
  background-color: #ffffff;
  padding: 8px;
  border-radius: 30px;
  border: 1px solid #707070;
  box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.1);
}

.search img {
  width: 15px;
  height: 15px;
}

#logout-icon {
  width: 20px;
  height: 20px;
  margin-left: 6px;
  vertical-align: middle;
  cursor: pointer;
  display: none;
  position: relative;
  top: 3px;
}
.menu-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1500px; /* Push to the right */
}
/* IMPROVED CAMPAIGN CARDS IN DASHBOARD */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 20px;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(1, 56, 122, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #e8f2ff;
  height: 100%;
}

/* Dashboard-specific spacing to reduce congestion */
.dashboard-main .campaigns-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  padding: 0 10px;
}

.dashboard-main .campaign-card {
  padding: 20px; /* add inner breathing room */
}

.dashboard-main .campaign-header {
  margin: 0 0 14px 0;
  padding: 10px 12px;
  background: #f6faff;
  border-radius: 12px;
}

.dashboard-main .campaign-title {
  font-size: 1.25rem;
  margin: 4px 0 8px 0;
}

.dashboard-main .campaign-description {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.dashboard-main .progress-bar {
  height: 8px;
  background: #e8f2ff;
  box-shadow: inset 0 1px 2px rgba(1, 56, 122, 0.06);
  margin-bottom: 10px;
}

.dashboard-main .progress-info {
  font-size: 0.95rem;
  font-weight: 600;
  color: #01387A;
  margin-bottom: 14px;
}

.dashboard-main .donate-btn {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 8px;
  width: auto; /* center button, not full width */
  align-self: center;
  display: inline-flex;
  justify-content: center;
  margin: 10px auto 0;
  min-width: 140px;
}

.dashboard-main .campaign-actions {
  margin-top: 10px;
  gap: 8px;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(1, 56, 122, 0.15);
  border-color: #b3d1f7;
}

/* Campaign Image with Status Badge */
.campaign-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.campaign-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.campaign-status-badge.published {
  background: #10B981;
  color: white;
}

.campaign-status-badge.draft {
  background: #F59E0B;
  color: white;
}

/* Campaign Content Area */
.campaign-content-area {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.campaign-category-badge {
  display: inline-block;
  background: #01387A;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.campaign-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #01387A;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.campaign-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

/* Campaign Meta Info */
.campaign-meta-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  background: #f8f9ff;
  border-radius: 10px;
  font-size: 0.9rem;
}

.campaign-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  color: #666;
  font-weight: 500;
}

.meta-value {
  color: #01387A;
  font-weight: 600;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  background: #e8f2ff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(1, 56, 122, 0.08);
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  border-radius: 10px;
  transition: width 0.6s ease;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.progress-info {
  font-size: 15px;
  color: #01387A;
  margin-bottom: 16px;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-info .raised {
  color: #059669;
}

/* Campaign Actions */
.campaign-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.campaign-actions button {
  min-width: 150px;
}

/* Donate Button */
.donate-btn {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100px;
  
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  letter-spacing: 0.3px;
}

.donate-btn:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

/* Campaign Header (for dashboard cards) */
.campaign-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px;
  background: #f8f9ff;
  border-radius: 8px;
}

.campaign-icon {
  font-size: 18px;
  margin-right: 10px;
  color: #01387A;
}

.campaign-number {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Media Preview in Cards */
.campaign-media-preview {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
}

/* Organizer Info in Card */
.campaign-organizer-mini {
  font-size: 0.85rem;
  color: #666;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e8f2ff;
}

/* Loading States */
.loading, .no-campaigns, .error {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-size: 1.1rem;
  grid-column: 1 / -1;
  background: white;
  border-radius: 15px;
  margin: 20px;
}

.error {
  color: #dc3545;
  background: #fff5f5;
  border: 2px solid #feb2b2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-center {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .campaigns-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }
  
  .nav-center {
    position: static;
    transform: none;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .circular-logo {
    margin: 0 auto;
  }
  
  .campaigns-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .campaign-image-container {
    height: 200px;
  }
  
  .campaign-actions {
    flex-direction: column;
  }
  
  .campaign-actions button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .campaign-content-area {
    padding: 16px;
  }
  
  .campaign-title {
    font-size: 1.2rem;
  }
  
  .campaign-image-container {
    height: 180px;
  }
}