:root {
  --primary-purple: #4a2c6a;
  --primary-purple-dark: #3a1f54;
  --primary-purple-light: #6b4d8a;
  --text-dark: #333333;
  --text-muted: #666666;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-purple-dark);
}

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

.navbar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple) !important;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-purple) !important;
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(74, 44, 106, 0.7), rgba(58, 31, 84, 0.8));
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-text {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.8rem;
  color: var(--primary-purple);
  margin-bottom: 2rem;
  font-weight: 600;
}

.article-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

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

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

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.article-card-body {
  padding: 1.5rem;
}

.article-card-title {
  font-size: 1.2rem;
  color: var(--primary-purple);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.article-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.read-more-link {
  color: var(--primary-purple);
  font-weight: 500;
  font-size: 0.9rem;
}

.read-more-link:hover {
  text-decoration: underline;
}

.page-header {
  background-color: var(--primary-purple);
  color: var(--bg-white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
}

.content-section h2 {
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section h3 {
  color: var(--primary-purple-dark);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.article-featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-info i {
  color: var(--primary-purple);
  margin-right: 0.5rem;
  width: 20px;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(74, 44, 106, 0.15);
}

.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

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

.custom-checkbox .custom-control-label::before {
  border-color: var(--border-color);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

footer {
  background-color: var(--primary-purple-dark);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

footer h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--bg-white);
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.cookie-buttons button {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--primary-purple);
  color: var(--bg-white);
  border: none;
}

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

.btn-reject {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.btn-reject:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-content h1 {
  color: var(--primary-purple);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .section-padding {
    padding: 2rem 0;
  }

  .content-section {
    padding: 1.5rem;
  }

  .article-featured-image {
    height: 250px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}
