/* Base Styles */
:root {
  --primary-color: #e63946;
  --secondary-color: #1d3557;
  --accent-color: #457b9d;
  --light-color: #f1faee;
  --dark-color: #1d3557;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #ddd;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --max-width: 1200px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background-color: #d32f2f;
  color: white;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

nav ul li a:hover, 
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.subscription-btn {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.subscription-btn:hover {
  background-color: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  margin-bottom: 40px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light-color);
}

/* News Grid */
.featured-news {
  margin-bottom: 50px;
}

.featured-news h2 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.featured-news h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-card.featured .news-image {
  height: 100%;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.news-content {
  padding: 20px;
}

.category {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.news-content h3 a {
  color: var(--dark-color);
}

.news-content h3 a:hover {
  color: var(--primary-color);
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.read-more {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 8px;
}

/* Subscription Banner */
.subscription-banner {
  background-color: var(--accent-color);
  color: white;
  padding: 50px 0;
  margin: 50px 0;
  border-radius: var(--border-radius);
  text-align: center;
}

.subscription-content {
  max-width: 700px;
  margin: 0 auto;
}

.subscription-content h2 {
  color: white;
  margin-bottom: 15px;
}

.subscription-content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.subscription-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.subscription-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.subscription-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.subscription-form button:hover {
  background-color: #d32f2f;
}

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 50px 0 20px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-links h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-color);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(29, 53, 87, 0.95);
  color: white;
  padding: 15px 20px;
  z-index: 999;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 15px;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-cookie {
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cookie.accept {
  background-color: var(--success-color);
  color: white;
}

.btn-cookie.customize {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.btn-cookie.reject {
  background-color: var(--text-light);
  color: white;
}

.btn-cookie:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cookie-policy-link {
  font-size: 0.8rem;
  text-decoration: underline;
  color: var(--light-color);
}

/* Single Post Styles */
.post-content {
  padding: 40px 0;
}

.single-post {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  margin-bottom: 40px;
}

.post-header {
  padding: 30px;
  text-align: center;
}

.post-header h1 {
  font-size: 2.5rem;
  margin: 15px 0;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-image {
  height: 500px;
  overflow: hidden;
}

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

.post-body {
  padding: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-body .lead {
  font-size: 1.3rem;
  color: var(--accent-color);
  line-height: 1.6;
  font-weight: 500;
}

.post-body h2 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
}

.post-body blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 20px 0;
  background-color: #f9f9f9;
  font-style: italic;
}

.post-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--border-color);
}

.share-buttons {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.share-buttons span {
  margin-right: 15px;
  font-weight: 600;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
  color: white;
}

.share-btn.facebook {
  background-color: #3b5998;
}

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

.share-btn.linkedin {
  background-color: #0077b5;
}

.share-btn.email {
  background-color: #777;
}

.share-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tags span {
  margin-right: 10px;
  font-weight: 600;
}

.tag {
  display: inline-block;
  background-color: #f0f0f0;
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--accent-color);
  color: white;
}

.related-posts {
  margin-bottom: 40px;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.related-posts h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.related-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card h4 {
  padding: 15px 15px 5px;
  font-size: 1.1rem;
}

.related-card .date {
  padding: 0 15px 15px;
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 40px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.social-contact {
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.social-contact h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-form-container {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(69, 123, 157, 0.2);
}

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

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.map-section {
  margin-bottom: 50px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 25px;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 25px;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
}

.faq-item {
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  margin: 0 auto 20px;
}

.thank-you-message h2 {
  color: var(--success-color);
  margin-bottom: 15px;
}

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

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

/* About Page Styles */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin: 50px 0;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.about-hero-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.mission-box, .vision-box {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-box h2, .vision-box h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.values-section {
  margin-bottom: 50px;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.history-section {
  margin-bottom: 50px;
}

.history-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.history-content {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  position: relative;
  padding: 10px 40px;
}

.timeline-date {
  position: absolute;
  width: 70px;
  background-color: var(--accent-color);
  color: white;
  text-align: center;
  border-radius: 20px;
  padding: 5px 0;
  font-weight: 600;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: calc(50% - 40px);
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 50%;
  margin-top: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 0;
  margin-top: 30px;
}

.timeline-content h3 {
  margin-bottom: 5px;
  color: var(--accent-color);
}

.timeline-content p {
  margin-bottom: 0;
}

.team-section {
  margin-bottom: 50px;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card h3 {
  padding: 15px 15px 5px;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.team-card p {
  padding: 0 15px;
  margin-bottom: 10px;
}

.team-card p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.team-social {
  display: flex;
  gap: 10px;
  padding: 0 15px 15px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #f0f0f0;
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.recognition-section {
  margin-bottom: 50px;
}

.recognition-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.recognition-card {
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
}

.award-icon {
  font-size: 2.5rem;
  margin-right: 15px;
}

.award-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.award-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .news-card.featured {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .about-hero {
    grid-template-columns: 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-top: 40px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    left: 80px;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-date {
    left: 40px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .post-image {
    height: 300px;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .subscription-form {
    flex-direction: column;
  }
  
  .subscription-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .subscription-form button {
    border-radius: var(--border-radius);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Special Effects */
.news-card, .team-card, .value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.95;
}

.news-card:hover, .team-card:hover, .value-card:hover {
  opacity: 1;
}

.btn-primary, .subscription-btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .subscription-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.7s ease;
}

.btn-primary:hover::before, .subscription-btn:hover::before {
  left: 100%;
}
