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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.newsletter-container {
  max-width: 768px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header */
.header {
  background: linear-gradient(135deg, #4A90E2 0%, #2E5BBA 100%);
  padding: 30px 20px;
  color: white;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-bird {
  width: 60px;
  height: 40px;
}

.logo-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.logo-text p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Newsletter Info */
.newsletter-info {
  background-color: #2E5BBA;
  color: white;
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Main Content */
.main-content {
  padding: 0 20px;
}

.article {
  margin-bottom: 40px;
  padding: 30px 0;
}

.article:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

.article-title {
  color: #2E5BBA;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.article-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.article-text {
  flex: 1;
}

.article-text p {
  margin-bottom: 15px;
  text-align: justify;
  line-height: 1.7;
}

.article-text strong {
  color: #2E5BBA;
}

.highlight-text {
  color: #4A90E2;
  font-style: italic;
  font-weight: 500;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 2px solid #4A90E2;
}

/* Investment Badge */
.article-sidebar {
  flex-shrink: 0;
}

.investment-badge {
  background: linear-gradient(135deg, #E53E3E 0%, #C53030 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.badge-header {
  background-color: rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.badge-amount {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.badge-illustration {
  margin: 20px 0;
}

.badge-illustration svg {
  width: 100px;
  height: 60px;
}

.badge-footer {
  font-size: 0.85rem;
  font-style: italic;
  background-color: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 5px;
}

/* Article Images */
.article-image {
  flex-shrink: 0;
}

.article-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 30px 20px 0;
}

.footer-content {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-bird-small {
  width: 40px;
  height: 30px;
}

.footer-brand {
  font-weight: bold;
  color: #2E5BBA;
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.7rem;
  color: #666;
  letter-spacing: 0.5px;
}

.footer-text {
  flex: 1;
}

.footer-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* Support Section */
.support-section {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}

.support-section h3 {
  color: #E53E3E;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.support-section p {
  margin-bottom: 20px;
  color: #555;
}

.donate-button {
  background-color: #E53E3E;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.donate-button:hover {
  background-color: #C53030;
}

/* Party Banner */
.party-banner {
  background: linear-gradient(135deg, #E53E3E 0%, #C53030 100%);
  color: white;
  padding: 30px;
  margin: 0 -20px;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.banner-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.banner-text p {
  font-size: 1.1rem;
  line-height: 1.4;
}

.pd-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pd-logo svg {
  width: 80px;
  height: 60px;
}

.pd-text {
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-container {
    margin: 0;
    box-shadow: none;
  }

  .header {
    padding: 20px 15px;
  }

  .logo-text h1 {
    font-size: 2rem;
  }

  .newsletter-info {
    padding: 8px 15px;
  }

  .main-content {
    padding: 0 15px;
  }

  .article-content {
    flex-direction: column;
  }

  .investment-badge {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .article-image {
    order: -1;
    text-align: center;
  }

  .article-image img {
    max-width: 100%;
  }

  .footer {
    padding: 20px 15px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .banner-text h3 {
    font-size: 1.5rem;
  }

  .party-banner {
    margin: 0 -15px;
  }
}

@media (max-width: 480px) {
  .logo-section {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .logo-text h1 {
    font-size: 1.8rem;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .investment-badge {
    padding: 15px;
  }

  .badge-amount {
    font-size: 1.1rem;
  }
}
