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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header and Navigation */
.header {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 0%, 0.3),
    hsla(0, 0%, 0%, 0.5)
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);

  position: fixed;
  top: 20px;
  width: 80%;
  border-radius: 10px;
  z-index: 1000;
  margin: 0 auto;
  right: 0;
  left: 0;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 50px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo-text {
  height: 40px;
  object-fit: contain;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6976df 0%, #7451aa 100%);
  color: white;
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  text-align: center;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.hero-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, #6976df, #7451aa);
  color: white;
  border-color: #6976df;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #e55a2b, #1db384);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Ad Section */
.ad-section {
  padding: 2rem 0;
  background: #f8f9fa;
  text-align: center;
}

.ad-section .container {
  max-width: 728px;
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

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

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.4;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.blog-meta i {
  margin-right: 5px;
}

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

.share-btn {
  background: #f8f9fa;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #667eea;
}

.share-btn:hover {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.blog-pagination {
  text-align: center;
}

/* Voting Preview Section */
.voting-preview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.voting-description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Voting Schedule Info on Homepage */
.voting-schedule-info {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s ease;
}

.voting-schedule-info i {
  font-size: 1.5rem;
}

.voting-schedule-info strong {
  font-weight: 700;
}

.voting-schedule-info small {
  font-size: 0.85em;
  opacity: 0.9;
}

/* Voting Open State */
.voting-schedule-info.voting-open {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.voting-schedule-info.voting-open i {
  animation: pulse 2s infinite;
}

/* Voting Closed State */
.voting-schedule-info.voting-closed {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.voting-schedule-info.voting-closed i {
  animation: shake 2s infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-5deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(5deg);
  }
}

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

.voting-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-description {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #ffd700;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #34495e;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffd700;
  color: #2c3e50;
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
}

.newsletter-btn {
  background: #ffd700;
  color: #2c3e50;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #ffed4e;
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
  .header {
    width: 90%;
    top: 10px;
  }

  .nav-container {
    padding: 0 30px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Header & Navigation */
  body {
    padding-top: 70px;
  }

  .header {
    width: 100%;
    top: 0;
    border-radius: 0;
    margin: 0;
    left: 0;
    right: 0;
  }

  .nav-container {
    padding: 0 20px;
  }

  .logo {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    height: 35px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(
      135deg,
      rgba(105, 118, 223, 0.98) 0%,
      rgba(116, 81, 170, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: white;
  }

  .nav-link::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 10;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hero Section */
  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

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

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Blog Grid */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Voting Stats */
  .voting-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .voting-schedule-info {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .voting-schedule-info i {
    font-size: 1.25rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-input {
    border-radius: 8px;
  }

  .newsletter-btn {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 15px;
  }

  /* Header */
  .nav-container {
    padding: 0 15px;
  }

  .logo {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    height: 30px;
  }

  /* Hero */
  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-image {
    max-height: 180px;
  }

  /* Sections */
  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Blog Cards */
  .blog-card {
    padding: 1rem;
  }

  .blog-title {
    font-size: 1.2rem;
  }

  .blog-meta {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-section {
    padding: 1rem 0;
  }

  .social-links {
    justify-content: center;
  }

  /* Ad Section */
  .ad-section {
    padding: 1.5rem 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus,
.share-btn:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  .btn-secondary {
    background: #fff;
    color: #000;
    border-color: #fff;
  }
}

/* Additional Styles for About, Contact, and Legal Pages */

/* About Page Styles */
.about-hero,
.contact-hero,
.legal-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.about-title,
.contact-title,
.legal-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-subtitle,
.contact-subtitle,
.legal-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-content {
  padding: 4rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-text h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  color: #333;
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.features-list i {
  color: #4caf50;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.team-member {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  margin-bottom: 1rem;
}

.member-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.member-role {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: white;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Mission Section */
.mission-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.mission-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.mission-content p {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.point-content p {
  color: #666;
  line-height: 1.6;
  text-align: left;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #6976df 0%, #7451aa 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-content {
  padding: 4rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

/* Contact Form Styles */
.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

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

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #f44336;
}

.error-message {
  color: #f44336;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label a {
  color: #667eea;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Contact Info Styles */
.contact-info {
  margin-bottom: 2rem;
}

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

.info-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.info-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.social-contact {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.social-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.social-contact .social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-contact .social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 12px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.social-contact .social-link:hover {
  background: #667eea;
  color: white;
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h4 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.faq-question i {
  color: #6976df;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* Legal Pages Styles */
.legal-content {
  padding: 4rem 0;
  background: white;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  color: #333;
}

.legal-text h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.5rem 0;
  color: #333;
}

.legal-text p {
  margin-bottom: 1rem;
  color: #666;
}

.legal-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: #666;
}

.legal-text a {
  color: #667eea;
  text-decoration: none;
}

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

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-title,
  .contact-title,
  .legal-title {
    font-size: 2rem;
  }

  .mission-points {
    grid-template-columns: 1fr;
  }

  .mission-point {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .social-contact .social-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .about-hero,
  .contact-hero,
  .legal-hero {
    padding: 2rem 0;
  }

  .about-title,
  .contact-title,
  .legal-title {
    font-size: 1.8rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-points {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1rem;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .ad-section,
  .hero-buttons,
  .blog-actions {
    display: none;
  }

  .blog-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
