:root {
  --aegean-blue: #0A5F8F;
  --mediterranean-teal: #1B9AAA;
  --warm-sand: #E8DCC4;
  --terracotta: #C75028;
  --olive-green: #6B7A3D;
  --deep-navy: #0D2738;
  --soft-cream: #F8F5F0;
  --gold-accent: #D4A574;
  --white: #FFFFFF;
  --gray-100: #F7F7F7;
  --gray-300: #D1D5DB;
  --gray-600: #6B7280;
  --gray-800: #374151;
}

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

body {
  font-family: 'Lora', serif;
  color: var(--gray-800);
  background-color: var(--soft-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mediterranean-teal);
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--aegean-blue) 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: -0.01em;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-family: 'Lato', sans-serif;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 95, 143, 0.85) 0%, rgba(27, 154, 170, 0.85) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 95, 143, 0.9) 0%, rgba(27, 154, 170, 0.7) 100%);
  z-index: 0;
  opacity: 0.7;
}

.course-badge{
  width: max-content;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
  color: var(--gold-accent);
  margin-bottom: 2rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--terracotta) 0%, #A03C1F 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(199, 80, 40, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(199, 80, 40, 0.4);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: var(--white);
  color: var(--aegean-blue);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: var(--aegean-blue);
  padding: 0.8rem 2rem;
  border: 2px solid var(--aegean-blue);
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--aegean-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-header .subtitle {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* Decorative Backgrounds */
.bg-wave-top {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23F8F5F0' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
  padding-bottom: 100px;
}

.bg-pattern-light {
  background-color: var(--soft-cream);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(27, 154, 170, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
}

.bg-pattern-dark {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--aegean-blue) 100%);
  color: var(--white);
}

.bg-pattern-dark h2,
.bg-pattern-dark h3,
.bg-pattern-dark h4 {
  color: var(--white);
}

.bg-pattern-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-teal {
  background: linear-gradient(135deg, var(--mediterranean-teal) 0%, var(--aegean-blue) 100%);
  color: var(--white);
}

.bg-gradient-warm {
  background: linear-gradient(135deg, var(--warm-sand) 0%, #F0E5D1 100%);
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mediterranean-teal), var(--aegean-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mediterranean-teal) 0%, var(--aegean-blue) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--white);
  transform: rotate(-5deg);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(0deg) scale(1.1);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: 1.5rem;
}

.service-price span {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: var(--gray-600);
}

/* Course Cards */
.course-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.course-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.course-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--mediterranean-teal), var(--aegean-blue));
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.course-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.course-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-300);
}

.course-duration {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.course-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracotta);
}

/* Article Cards */
.article-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.article-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-date {
  color: var(--mediterranean-teal);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.article-excerpt {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-300);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mediterranean-teal), var(--aegean-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 0.2rem;
}

.author-title {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold-accent);
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--gray-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mediterranean-teal), var(--aegean-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.testimonial-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-role {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter-box {
  background: linear-gradient(135deg, var(--aegean-blue) 0%, var(--mediterranean-teal) 100%);
  border-radius: 30px;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(10, 95, 143, 0.3);
}

.newsletter-box h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  background: var(--terracotta);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--deep-navy);
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--mediterranean-teal);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
  color: var(--gray-600);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--aegean-blue) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--gold-accent);
  transform: translateX(5px);
}

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

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

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold-accent);
  transform: translateY(-3px);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease-out;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  color: var(--gray-700);
}

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

.cookie-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--aegean-blue);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--mediterranean-teal);
}

.cookie-decline {
  background: var(--gray-300);
  color: var(--gray-700);
}

.cookie-decline:hover {
  background: var(--gray-400);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-label {
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--mediterranean-teal);
  box-shadow: 0 0 0 3px rgba(27, 154, 170, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-error {
  color: var(--terracotta);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.contact-info {
  background: linear-gradient(135deg, var(--aegean-blue) 0%, var(--mediterranean-teal) 100%);
  padding: 3rem;
  border-radius: 20px;
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 2rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Map Container */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 3rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.team-member:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--mediterranean-teal);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--gray-600);
  max-width: 300px;
  margin: 0 auto;
}

/* Course Detail Page */
.course-hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--aegean-blue) 100%);
  padding: 6rem 0 4rem;
  color: var(--white);
}

.course-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.course-hero .subtitle {
  color: var(--gold-accent);
}

.course-detail-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.course-info-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: var(--gray-600);
}

.info-value {
  color: var(--deep-navy);
  font-weight: 600;
}

.syllabus-section {
  margin-top: 3rem;
}

.syllabus-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.syllabus-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--mediterranean-teal), var(--aegean-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.syllabus-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.syllabus-content p {
  color: var(--gray-600);
  margin: 0;
}

/* Article Detail Page */
.article-hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--aegean-blue) 100%);
  padding: 6rem 0 4rem;
  color: var(--white);
}

.article-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.article-meta-info {
  display: flex;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
}

.article-detail-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-700);
}

.article-body h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.8rem;
}

/* Policy Pages */
.policy-content {
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--gray-700);
}

.policy-content li {
  margin-bottom: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .newsletter-box {
    padding: 3rem 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .contact-form,
  .contact-info {
    padding: 2rem;
  }

  .policy-content {
    padding: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .btn-primary-custom,
  .btn-secondary-custom,
  .btn-outline-custom {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .service-card,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}





.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}