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

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: #2c5f8d;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1a3d5c;
}

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

/* Page-Specific Gradient Backgrounds */
body.page-home {
  background: linear-gradient(135deg, #4a90e2 0%, #87ceeb 100%);
}

body.page-advantages {
  background: linear-gradient(135deg, #d4745e 0%, #f4d8b0 100%);
}

body.page-story {
  background: linear-gradient(135deg, #6b7c8a 0%, #e8e4da 100%);
}

body.page-networks {
  background: linear-gradient(135deg, #7a9b76 0%, #d8e4cf 100%);
}

body.page-news {
  background: linear-gradient(135deg, #556b8e 0%, #b8c9d9 100%);
}

body.page-faq {
  background: linear-gradient(135deg, #8a7e6b 0%, #ddd5c7 100%);
}

body.page-contact {
  background: linear-gradient(135deg, #6b8e7a 0%, #c9dfd0 100%);
}

body.page-privacy {
  background: linear-gradient(135deg, #5a6b7c 0%, #cbd5e0 100%);
}

/* Header Styles */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.site-logo {
  font-family: "Libre Baskerville", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #2c2c2c;
}

.site-logo a {
  color: inherit;
}

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

.main-nav a {
  color: #2c2c2c;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #2c5f8d;
  border-bottom-color: #2c5f8d;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #2c2c2c;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Sections */
.hero {
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.8;
}

.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  color: white;
}

.page-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Content Sections */
.main-content,
.content-section {
  background: white;
  margin: 3rem auto;
  padding: 4rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-wrapper,
.story-content,
.network-content,
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-wrapper h3,
.story-content h3,
.network-content h3,
.privacy-content h3 {
  color: #2c5f8d;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-wrapper h3:first-child,
.story-content h3:first-child,
.network-content h3:first-child,
.privacy-content h3:first-child {
  margin-top: 0;
}

/* Advantage Items */
.advantage-item {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e0e0e0;
}

.advantage-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.advantage-item h3 {
  color: #2c5f8d;
  margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews {
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem 0;
  margin: 3rem auto;
  border-radius: 8px;
}

.reviews h3 {
  text-align: center;
  color: #2c5f8d;
  margin-bottom: 3rem;
  font-size: 2rem;
}

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

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2c5f8d;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: #2c5f8d;
  font-size: 0.95rem;
}

/* CTA Section */
.cta {
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem 0;
  margin: 3rem auto;
  text-align: center;
  border-radius: 8px;
}

.cta-content h3 {
  color: #2c5f8d;
  margin-bottom: 1rem;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #2c5f8d 0%, #4a90e2 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
  color: white;
}

/* News Grid */
.news-grid {
  display: grid;
  gap: 2.5rem;
  padding: 0 2rem;
}

.news-item {
  background: #f9f9f9;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 5px solid #2c5f8d;
}

.news-item h3 {
  color: #2c5f8d;
  margin-bottom: 1.5rem;
}

/* FAQ Styles */
.faq-list {
  padding: 0 2rem;
}

.faq-item {
  background: #f9f9f9;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  border-left: 5px solid #2c5f8d;
}

.faq-item h3 {
  color: #2c5f8d;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.contact-info h3 {
  color: #2c5f8d;
  margin-bottom: 1.5rem;
}

.contact-form {
  background: #f9f9f9;
  padding: 2.5rem;
  border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5f8d;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #2c5f8d 0%, #4a90e2 100%);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.form-message {
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

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

.additional-contact {
  padding: 0 2rem;
}

.additional-contact h3 {
  color: #2c5f8d;
  margin-bottom: 1.5rem;
}

/* Privacy Policy Specific */
.privacy-content .last-updated {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
  color: #666;
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #e0e0e0;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-column h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: "Libre Baskerville", serif;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b0b0b0;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #4a90e2;
}

.copyright {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #808080;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding-top: 1rem;
  }

  .main-nav li {
    border-top: 1px solid #e0e0e0;
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

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

  .page-hero h2 {
    font-size: 2rem;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.35rem;
  }
}

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

  .main-content,
  .content-section {
    margin: 2rem auto;
    padding: 2rem 0;
  }

  .content-wrapper,
  .story-content,
  .network-content,
  .privacy-content {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .page-hero {
    padding: 2.5rem 0 2rem;
  }
}
