@font-face {
 font-family: "Google Sans";
 src: url("/fonts/GoogleSans-Regular.ttf") format("truetype");
 font-weight: 400;
 font-style: normal;
 font-display: swap;
}

@font-face {
 font-family: "Google Sans";
 src: url("/fonts/GoogleSans-Bold.ttf") format("truetype");
 font-weight: 700;
 font-style: normal;
 font-display: swap;
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
 --primary-color: #4285f4;
 --primary-dark: #3367d6;
 --success-color: #34a853;
 --text-color: #333;
 --text-light: #666;
 --bg-color: #f8f9fa;
 --card-bg: #ffffff;
 --border-color: #e0e0e0;
 --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
 font-family: "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
  Roboto, "Helvetica Neue", Arial, sans-serif;
 line-height: 1.6;
 color: var(--text-color);
 background-color: var(--bg-color);
}

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

/* Hero Section */
.hero {
 position: relative;
 text-align: center;
 padding: 40px 20px;
 color: white;
 border-radius: 12px;
 margin-bottom: 30px;
 overflow: hidden;
 min-height: 400px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.hero-slideshow {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
}

.hero-slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 opacity: 0;
 transition: opacity 1s ease-in-out;
}

.hero-slide.active {
 opacity: 1;
}

.hero-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.5);
 z-index: 2;
}

.hero-content {
 position: relative;
 z-index: 3;
 width: 100%;
 padding: 20px;
}

.logo-container {
 margin-bottom: 20px;
}

.logo {
 max-width: 200px;
 height: auto;
 background: #ffffff;
 padding: 15px;
 border-radius: 8px;
 backdrop-filter: blur(10px);
}

.hero h1 {
 font-size: 2.5rem;
 margin-bottom: 10px;
}

.subtitle {
 font-size: 1.2rem;
 margin-bottom: 20px;
 opacity: 0.9;
}

.description {
 font-size: 1rem;
 max-width: 600px;
 margin: 0 auto;
 opacity: 0.95;
}

/* Summary Section */
.summary {
 margin-bottom: 40px;
}

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

.summary-card {
 background: var(--card-bg);
 padding: 25px;
 border-radius: 8px;
 box-shadow: var(--shadow);
 text-align: center;
}

.summary-card h3 {
 font-size: 0.9rem;
 color: var(--text-light);
 margin-bottom: 10px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.summary-card .amount {
 font-size: 1.8rem;
 font-weight: bold;
 color: var(--primary-color);
}

/* Recent Donations */
.recent-donations {
 margin-top: 40px;
 margin-bottom: 40px;
}

.recent-donations h2 {
 margin-bottom: 20px;
 color: var(--text-color);
}

.donations-list {
 background: var(--card-bg);
 border-radius: 8px;
 box-shadow: var(--shadow);
 padding: 20px;
 min-height: 200px;
}

/* Disbursements */
.disbursements {
 margin-bottom: 40px;
}

.disbursements h2 {
 margin-bottom: 20px;
 color: var(--text-color);
}

.disbursements-list {
 background: var(--card-bg);
 border-radius: 8px;
 box-shadow: var(--shadow);
 padding: 20px;
 min-height: 200px;
}

.disbursement-item {
 padding: 20px;
 border-bottom: 1px solid var(--border-color);
}

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

.disbursement-header {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 20px;
}

.disbursement-info {
 flex: 1;
 min-width: 0;
}

.disbursement-description {
 font-weight: 600;
 color: var(--text-color);
 margin-bottom: 8px;
 line-height: 1.5;
}

.disbursement-date {
 font-size: 0.85rem;
 color: var(--text-light);
 margin-top: 5px;
}

.disbursement-right {
 display: flex;
 flex-direction: column;
 align-items: flex-end;
 gap: 10px;
}

.disbursement-amount {
 font-size: 1.2rem;
 font-weight: bold;
 color: var(--primary-color);
 white-space: nowrap;
}

/* Activity Toggle Button */
.activity-toggle-btn {
 display: flex;
 align-items: center;
 gap: 8px;
 padding: 8px 16px;
 background: var(--primary-color);
 color: white;
 border: none;
 border-radius: 6px;
 cursor: pointer;
 font-size: 0.9rem;
 font-weight: 500;
 transition: all 0.2s ease;
 font-family: inherit;
}

.activity-toggle-btn:hover {
 background: var(--primary-dark);
 transform: translateY(-1px);
 box-shadow: 0 2px 4px rgba(66, 133, 244, 0.3);
}

.activity-toggle-btn.active {
 background: var(--primary-dark);
}

.activity-toggle-text {
 white-space: nowrap;
}

.activity-count-badge {
 background: rgba(255, 255, 255, 0.3);
 padding: 2px 8px;
 border-radius: 12px;
 font-size: 0.85rem;
 font-weight: 600;
}

.activity-toggle-icon {
 font-size: 0.75rem;
 transition: transform 0.2s ease;
}

/* Activity Timeline */
.activity-timeline {
 margin-top: 20px;
 padding-top: 20px;
 border-top: 1px solid var(--border-color);
 animation: slideDown 0.3s ease;
}

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

.activity-timeline-content {
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.activity-item {
 padding: 12px 16px;
 background: rgba(66, 133, 244, 0.05);
 border-radius: 8px;
 border-left: 3px solid var(--primary-color);
}

.activity-time {
 font-weight: 600;
 color: var(--primary-color);
 margin-bottom: 6px;
 font-size: 0.9rem;
}

.activity-description {
 color: var(--text-color);
 font-size: 0.9rem;
 line-height: 1.5;
 margin-bottom: 8px;
}

.activity-file {
 margin-top: 10px;
}

.activity-file-link {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 color: var(--primary-color);
 text-decoration: none;
 font-size: 0.85rem;
 transition: color 0.2s ease;
}

.activity-file-link:hover {
 color: var(--primary-dark);
 text-decoration: underline;
}

.activity-image img,
.activity-video video {
 max-width: 100%;
 max-height: 300px;
 border-radius: 6px;
 border: 1px solid var(--border-color);
 margin-top: 8px;
 object-fit: contain;
}

.activity-video video {
 width: 100%;
}

/* Activity Gallery */
.activity-gallery {
 margin-top: 12px;
}

.activity-gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
 gap: 12px;
}

.activity-gallery-item {
 position: relative;
 border-radius: 8px;
 overflow: hidden;
 border: 1px solid var(--border-color);
 background: var(--card-bg);
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-gallery-item:hover {
 transform: translateY(-2px);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.activity-gallery-link {
 display: block;
 width: 100%;
 height: 100%;
 text-decoration: none;
 color: inherit;
 cursor: pointer;
}

.activity-gallery-link img {
 width: 100%;
 height: 150px;
 object-fit: cover;
 display: block;
 transition: opacity 0.2s ease;
}

.activity-gallery-link:hover img {
 opacity: 0.9;
}

.activity-gallery-video {
 width: 100%;
}

.activity-gallery-link video {
 width: 100%;
 height: 150px;
 object-fit: cover;
 display: block;
 cursor: pointer;
}

.activity-gallery-link:hover video {
 opacity: 0.9;
}

.activity-gallery-document {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 padding: 20px;
 min-height: 150px;
 background: var(--bg-color);
}

.activity-gallery-document-icon {
 font-size: 3rem;
 margin-bottom: 8px;
}

.activity-gallery-document-name {
 font-size: 0.85rem;
 color: var(--text-color);
 text-align: center;
 word-break: break-word;
 max-width: 100%;
 overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
}

.donation-item {
 padding: 15px;
 border-bottom: 1px solid var(--border-color);
 display: flex;
 justify-content: space-between;
 align-items: center;
}

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

.donation-info {
 flex: 1;
}

.donation-name {
 font-weight: 600;
 color: var(--text-color);
 margin-bottom: 5px;
}

.donation-message {
 color: var(--text-light);
 font-size: 0.9rem;
 margin-top: 5px;
}

.donation-amount {
 font-size: 1.2rem;
 font-weight: bold;
 color: var(--success-color);
}

.donation-date {
 font-size: 0.85rem;
 color: var(--text-light);
 margin-top: 5px;
}

.loading,
.empty {
 text-align: center;
 color: var(--text-light);
 padding: 40px;
}

/* Loading Skeletons */
.skeleton {
 background: linear-gradient(
  90deg,
  #f0f0f0 25%,
  #e0e0e0 50%,
  #f0f0f0 75%
 );
 background-size: 200% 100%;
 animation: loading 1.5s ease-in-out infinite;
 border-radius: 4px;
}

@keyframes loading {
 0% {
  background-position: 200% 0;
 }
 100% {
  background-position: -200% 0;
 }
}

.skeleton-item {
 padding: 20px;
 border-bottom: 1px solid var(--border-color);
}

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

.skeleton-line {
 height: 16px;
 margin-bottom: 12px;
}

.skeleton-line.short {
 width: 60%;
}

.skeleton-line.medium {
 width: 80%;
}

.skeleton-line.long {
 width: 100%;
}

.skeleton-avatar {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 margin-bottom: 12px;
}

/* Toast Notifications */
.toast-container {
 position: fixed;
 top: 20px;
 right: 20px;
 z-index: 10000;
 display: flex;
 flex-direction: column;
 gap: 12px;
 max-width: 400px;
}

.toast {
 background: var(--card-bg);
 border-radius: 8px;
 padding: 16px 20px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 display: flex;
 align-items: center;
 gap: 12px;
 animation: slideIn 0.3s ease-out;
 min-width: 300px;
}

@keyframes slideIn {
 from {
  transform: translateX(400px);
  opacity: 0;
 }
 to {
  transform: translateX(0);
  opacity: 1;
 }
}

.toast.success {
 border-left: 4px solid var(--success-color);
}

.toast.error {
 border-left: 4px solid #ea4335;
}

.toast.info {
 border-left: 4px solid var(--primary-color);
}

.toast-icon {
 font-size: 20px;
 flex-shrink: 0;
}

.toast.success .toast-icon {
 color: var(--success-color);
}

.toast.error .toast-icon {
 color: #ea4335;
}

.toast.info .toast-icon {
 color: var(--primary-color);
}

.toast-content {
 flex: 1;
}

.toast-message {
 font-weight: 500;
 color: var(--text-color);
 margin-bottom: 4px;
}

.toast-description {
 font-size: 0.875rem;
 color: var(--text-light);
}

.toast-close {
 background: none;
 border: none;
 color: var(--text-light);
 cursor: pointer;
 font-size: 20px;
 padding: 0;
 width: 24px;
 height: 24px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 4px;
 transition: all 0.2s;
}

.toast-close:hover {
 background: rgba(0, 0, 0, 0.05);
 color: var(--text-color);
}

/* Back to Top Button */
.back-to-top {
 position: fixed;
 bottom: 30px;
 right: 30px;
 width: 50px;
 height: 50px;
 background: var(--primary-color);
 color: white;
 border: none;
 border-radius: 50%;
 cursor: pointer;
 display: none;
 align-items: center;
 justify-content: center;
 font-size: 24px;
 box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
 transition: all 0.3s ease;
 z-index: 9999;
}

.back-to-top.visible {
 display: flex;
}

.back-to-top:hover {
 background: var(--primary-dark);
 transform: translateY(-3px);
 box-shadow: 0 6px 16px rgba(66, 133, 244, 0.5);
}

.back-to-top:active {
 transform: translateY(-1px);
}

/* Donation Progress Bar */
.progress-section {
 background: var(--card-bg);
 border-radius: 12px;
 padding: 24px;
 margin-bottom: 30px;
 box-shadow: var(--shadow);
}

.progress-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 16px;
}

.progress-title {
 font-size: 1.1rem;
 font-weight: 600;
 color: var(--text-color);
}

.progress-goal {
 font-size: 0.9rem;
 color: var(--text-light);
}

.progress-bar-container {
 width: 100%;
 height: 24px;
 background: #e0e0e0;
 border-radius: 12px;
 overflow: hidden;
 position: relative;
 margin-bottom: 12px;
}

.progress-bar {
 height: 100%;
 background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
 border-radius: 12px;
 transition: width 0.6s ease;
 position: relative;
 overflow: hidden;
}

.progress-bar::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
 background: linear-gradient(
  90deg,
  transparent,
  rgba(255, 255, 255, 0.3),
  transparent
 );
 animation: shimmer 2s infinite;
}

@keyframes shimmer {
 0% {
  transform: translateX(-100%);
 }
 100% {
  transform: translateX(100%);
 }
}

.progress-stats {
 display: flex;
 justify-content: space-between;
 font-size: 0.9rem;
}

.progress-raised {
 color: var(--primary-color);
 font-weight: 600;
}

.progress-remaining {
 color: var(--text-light);
}

/* Social Sharing */
.social-sharing {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
 margin-top: 20px;
}

.social-btn {
 display: flex;
 align-items: center;
 gap: 8px;
 padding: 10px 16px;
 border-radius: 8px;
 text-decoration: none;
 font-size: 0.9rem;
 font-weight: 500;
 transition: all 0.2s ease;
 border: none;
 cursor: pointer;
 font-family: inherit;
}

.social-icon {
 width: 20px;
 height: 20px;
 flex-shrink: 0;
}

.social-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-btn.whatsapp {
 background: #25d366;
 color: white;
}

.social-btn.whatsapp:hover {
 background: #20ba5a;
}

.social-btn.facebook {
 background: #1877f2;
 color: white;
}

.social-btn.facebook:hover {
 background: #166fe5;
}

.social-btn.twitter {
 background: #1da1f2;
 color: white;
}

.social-btn.twitter:hover {
 background: #1a91da;
}

.social-btn.telegram {
 background: #0088cc;
 color: white;
}

.social-btn.telegram:hover {
 background: #0077b5;
}

.social-btn.copy-link {
 background: var(--card-bg);
 color: var(--text-color);
 border: 1px solid var(--border-color);
}

.social-btn.copy-link:hover {
 background: var(--bg-color);
}

/* Print Styles */
@media print {
 * {
  background: white !important;
  color: black !important;
  box-shadow: none !important;
 }

 .hero,
 .donation-form-section,
 .back-to-top,
 .toast-container,
 .social-sharing,
 .activity-toggle-btn,
 button:not(.print-show),
 footer {
  display: none !important;
 }

 .container {
  max-width: 100%;
  padding: 0;
 }

 .summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  page-break-inside: avoid;
 }

 .summary-card,
 .donation-item,
 .disbursement-item {
  page-break-inside: avoid;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
 }

 .progress-section {
  page-break-inside: avoid;
  border: 1px solid #ddd;
 }

 h1,
 h2,
 h3 {
  page-break-after: avoid;
 }

 @page {
  margin: 2cm;
 }
}

/* Pagination */
#pagination-controls {
 margin-top: 20px;
 display: flex;
 justify-content: center;
}

.pagination {
 display: flex;
 align-items: center;
 gap: 8px;
 flex-wrap: wrap;
 justify-content: center;
}

.pagination-btn {
 padding: 8px 16px;
 background: var(--card-bg);
 border: 1px solid var(--border-color);
 border-radius: 6px;
 color: var(--text-color);
 font-size: 0.9rem;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.3s;
 font-family: inherit;
}

.pagination-btn:hover:not(.disabled):not(.active) {
 background: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}

.pagination-btn.active {
 background: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
 font-weight: 600;
}

.pagination-btn.disabled {
 opacity: 0.5;
 cursor: not-allowed;
 background: var(--bg-color);
}

.pagination-ellipsis {
 padding: 8px 4px;
 color: var(--text-light);
 font-size: 0.9rem;
}

/* Donation Form */
.donation-form-section {
 background: var(--card-bg);
 padding: 30px;
 border-radius: 8px;
 box-shadow: var(--shadow);
 margin-bottom: 40px;
}

.donation-form-section h2 {
 margin-bottom: 25px;
 color: var(--text-color);
}

.form-group {
 margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: 6px;
 font-size: 1rem;
 font-family: inherit;
 transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group input.error,
.form-group textarea.error {
 border-color: #ea4335;
 box-shadow: 0 0 0 3px rgba(234, 67, 53, 0.1);
}

.field-error {
 color: #ea4335;
 font-size: 0.875rem;
 margin-top: 5px;
 display: flex;
 align-items: center;
 gap: 5px;
}

.field-error::before {
 content: "⚠";
 font-size: 0.875rem;
}

.form-group small {
 display: block;
 margin-top: 5px;
 color: var(--text-light);
 font-size: 0.85rem;
}

.checkbox-group {
 display: flex;
 align-items: center;
}

.checkbox-group label {
 display: flex;
 align-items: center;
 cursor: pointer;
 font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
 width: auto;
 margin-right: 8px;
 cursor: pointer;
}

.submit-btn {
 width: 100%;
 padding: 15px;
 background: var(--primary-color);
 color: white;
 border: none;
 border-radius: 6px;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 transition: background 0.3s;
}

.submit-btn:hover {
 background: var(--primary-dark);
}

.submit-btn:disabled {
 background: var(--text-light);
 cursor: not-allowed;
}

/* Fee Breakdown */
.fee-breakdown {
 background: #f8f9fa;
 border: 1px solid var(--border-color);
 border-radius: 6px;
 padding: 15px;
 margin-bottom: 20px;
}

.breakdown-item {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 8px 0;
 border-bottom: 1px solid var(--border-color);
}

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

.breakdown-item.total {
 font-weight: 600;
 font-size: 1.1rem;
 padding-top: 12px;
 margin-top: 8px;
 border-top: 2px solid var(--primary-color);
 color: var(--primary-color);
}

/* Footer */
.footer {
 background: var(--card-bg);
 padding: 40px 20px;
 color: var(--text-light);
 font-size: 0.9rem;
 border-top: 1px solid var(--border-color);
 margin-top: 40px;
}

.footer-content {
 max-width: 1200px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}

.footer-section {
 text-align: left;
}

.footer-title {
 color: var(--text-color);
 font-size: 1.1rem;
 font-weight: 600;
 margin-bottom: 12px;
}

.footer-text {
 color: var(--text-light);
 line-height: 1.6;
 margin-bottom: 12px;
}

.footer-contact {
 display: flex;
 align-items: center;
 gap: 8px;
 flex-wrap: wrap;
 margin-top: 8px;
}

.footer-link {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: var(--primary-color);
 text-decoration: none;
 font-weight: 500;
 transition: color 0.2s ease;
}

.footer-link:hover {
 color: var(--primary-dark);
 text-decoration: underline;
}

.footer-icon {
 font-size: 1.1rem;
}

.footer-github-icon {
 width: 20px;
 height: 20px;
 fill: var(--primary-color);
 transition: fill 0.2s ease;
}

.footer-github:hover .footer-github-icon {
 fill: var(--primary-dark);
}

.footer-contact-name {
 color: var(--text-light);
 font-size: 0.9rem;
}

.footer-github {
 margin-top: 8px;
}

/* Responsive */
@media (max-width: 600px) {
 .hero {
  min-height: 350px;
  padding: 30px 15px;
 }

 .hero h1 {
  font-size: 2rem;
 }

 .hero-content {
  padding: 15px;
 }

 .logo {
  max-width: 150px;
 }

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

 .donation-item {
  flex-direction: column;
  align-items: flex-start;
 }

 .donation-amount {
  margin-top: 10px;
 }

 .disbursement-item {
  flex-direction: column;
  align-items: flex-start;
 }

 .disbursement-amount {
  margin-top: 10px;
 }

 .pagination {
  gap: 4px;
 }

 .pagination-btn {
  padding: 6px 12px;
  font-size: 0.85rem;
 }

 .activity-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
 }

 .activity-gallery-link img,
 .activity-gallery-video video {
  height: 120px;
 }

 .activity-gallery-document {
  min-height: 120px;
  padding: 15px;
 }

 .activity-gallery-document-icon {
  font-size: 2.5rem;
 }

 .footer-content {
  grid-template-columns: 1fr;
  gap: 20px;
 }

 .footer-section {
  text-align: center;
 }
}

/* Page Header */
.page-header {
 text-align: center;
 padding: 40px 20px;
 margin-bottom: 30px;
}

.page-header .logo-container {
 margin-bottom: 20px;
}

.page-header .logo {
 max-width: 150px;
 height: auto;
 background: #ffffff;
 padding: 15px;
 border-radius: 8px;
}

.page-header h1 {
 font-size: 2.5rem;
 color: var(--text-color);
 margin-top: 20px;
}

/* Page Content */
.page-content {
 max-width: 900px;
 margin: 0 auto;
 padding: 0 20px 40px;
}

.content-card {
 background: var(--card-bg);
 padding: 30px;
 border-radius: 8px;
 box-shadow: var(--shadow);
 margin-bottom: 30px;
}

.content-card h2 {
 color: var(--text-color);
 font-size: 1.8rem;
 margin-bottom: 20px;
 border-bottom: 2px solid var(--primary-color);
 padding-bottom: 10px;
}

.content-card h3 {
 color: var(--text-color);
 font-size: 1.3rem;
 margin-top: 25px;
 margin-bottom: 15px;
}

.content-card p {
 color: var(--text-color);
 line-height: 1.8;
 margin-bottom: 15px;
}

.content-card ul {
 color: var(--text-color);
 line-height: 1.8;
 margin-left: 20px;
 margin-bottom: 15px;
}

.content-card li {
 margin-bottom: 10px;
}

.gdg-list {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 8px;
 margin-top: 15px;
 margin-bottom: 20px;
}

.gdg-list li {
 padding: 10px 15px;
 background: var(--bg-color);
 border-radius: 6px;
 border-left: 3px solid var(--primary-color);
 transition: all 0.2s ease;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 12px;
}

.gdg-list li:hover {
 background: #f0f4ff;
 transform: translateX(5px);
}

.gdg-list li span {
 flex: 1;
}

.gdg-instagram-link {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 32px;
 height: 32px;
 border-radius: 6px;
 background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
 color: white;
 text-decoration: none;
 transition: all 0.2s ease;
 flex-shrink: 0;
}

.gdg-instagram-link:hover {
 transform: scale(1.1);
 box-shadow: 0 2px 8px rgba(188, 24, 136, 0.4);
}

.instagram-icon {
 width: 18px;
 height: 18px;
}

.content-card strong {
 color: var(--text-color);
 font-weight: 600;
}

.btn-primary {
 display: inline-flex;
 align-items: center;
 padding: 12px 24px;
 background: var(--primary-color);
 color: white;
 text-decoration: none;
 border-radius: 6px;
 font-weight: 500;
 transition: background 0.3s ease;
 margin-top: 10px;
}

.btn-primary:hover {
 background: var(--primary-dark);
}

/* Footer Links */
.footer-links {
 max-width: 1200px;
 margin: 30px auto 0;
 padding-top: 20px;
 border-top: 1px solid var(--border-color);
 text-align: center;
}

.footer-links a {
 color: var(--text-light);
 text-decoration: none;
 margin: 0 15px;
 font-size: 0.9rem;
 transition: color 0.2s ease;
}

.footer-links a:hover {
 color: var(--primary-color);
}

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

 .content-card {
  padding: 20px;
 }

 .content-card h2 {
  font-size: 1.5rem;
 }

 .content-card h3 {
  font-size: 1.1rem;
 }

 .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
 }

 .footer-links a {
  margin: 0;
 }
}

/* Image Modal/Popup */
.image-modal {
 display: none;
 position: fixed;
 z-index: 9999;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 overflow: auto;
 background-color: rgba(0, 0, 0, 0.9);
 animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
 from {
  opacity: 0;
 }
 to {
  opacity: 1;
 }
}

.image-modal-content {
 margin: auto;
 display: block;
 max-width: 90%;
 max-height: 90%;
 margin-top: 5vh;
 object-fit: contain;
 animation: zoomIn 0.3s ease;
}

#video-modal-video {
 max-width: 90%;
 max-height: 90vh;
 margin-top: 5vh;
}

@keyframes zoomIn {
 from {
  transform: scale(0.8);
  opacity: 0;
 }
 to {
  transform: scale(1);
  opacity: 1;
 }
}

.image-modal-close {
 position: absolute;
 top: 20px;
 right: 35px;
 color: #f1f1f1;
 font-size: 40px;
 font-weight: bold;
 cursor: pointer;
 transition: color 0.3s ease;
 z-index: 10000;
}

.image-modal-close:hover,
.image-modal-close:focus {
 color: #fff;
 text-decoration: none;
}

.image-modal-caption {
 margin: auto;
 display: block;
 width: 80%;
 max-width: 700px;
 text-align: center;
 color: #ccc;
 padding: 10px 0;
 font-size: 1rem;
}

@media (max-width: 600px) {
 .image-modal-content {
  max-width: 95%;
  margin-top: 2vh;
 }

 .image-modal-close {
  top: 10px;
  right: 15px;
  font-size: 30px;
 }

 .image-modal-caption {
  width: 95%;
  font-size: 0.9rem;
 }
}
