:root {
  --color1: #32735e;
  --color2: #7a7f65;
  --color3: #002a71;
  --color4: #868cbb;
  --color5: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color3);
  background-color: var(--color5);
  overflow-x: hidden;
}

.bg-color1 {
  background-color: var(--color1);
}
.bg-color2 {
  background-color: var(--color2);
}
.bg-color3 {
  background-color: var(--color3);
}
.bg-color4 {
  background-color: var(--color4);
}
.bg-color5 {
  background-color: var(--color5);
}

.text-color1 {
  color: var(--color1);
}
.text-color2 {
  color: var(--color2);
}
.text-color3 {
  color: var(--color3);
}
.text-color4 {
  color: var(--color4);
}
.text-color5 {
  color: var(--color5);
}

.border-color1 {
  border-color: var(--color1);
}
.border-color2 {
  border-color: var(--color2);
}
.border-color3 {
  border-color: var(--color3);
}
.border-color4 {
  border-color: var(--color4);
}

/* Hero Section Pattern */
.hero-pattern {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem;
}

.hero-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
      45deg,
      transparent 25%,
      rgba(0, 42, 113, 0.05) 25%
    ),
    linear-gradient(-45deg, transparent 25%, rgba(0, 42, 113, 0.05) 25%),
    linear-gradient(45deg, rgba(0, 42, 113, 0.05) 75%, transparent 75%),
    linear-gradient(-45deg, rgba(0, 42, 113, 0.05) 75%, transparent 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  z-index: 1;
}

.hero-pattern > * {
  position: relative;
  z-index: 2;
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid var(--color1);
  border-radius: 50%;
  z-index: 0;
}

.decorative-dots {
  position: absolute;
  width: 200px;
  height: 100px;
}

.decorative-dots::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--color2) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.5;
}

/* Animated Button */
.animated-border-button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  color: var(--color5);
  background-color: var(--color3);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.animated-border-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color1);
  transition: all 0.3s ease;
  z-index: -1;
}

.animated-border-button:hover::before {
  left: 0;
}

.animated-border-button:hover {
  color: var(--color5);
  text-decoration: none;
}

/* Course Cards */
.course-card {
  position: relative;
  background-color: var(--color5);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--color1);
}

/* Notification */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 20px;
  background-color: var(--color5);
  border-left: 4px solid var(--color1);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(200%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.notification.show {
  transform: translateX(0);
}

.close-notification {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: var(--color2);
}

.close-notification:hover {
  color: var(--color1);
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 40px;
  background-color: var(--color4);
}

.marquee {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-section {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--color4);
  border-radius: 4px;
  background-color: transparent;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color1);
  outline: none;
}

/* Cookie Banner */
.c00k_es__wrap__v9p {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2147483647;
  max-width: min(520px, calc(100% - 32px));
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  font: 16px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
  color: #1e293b;
}

.c00k_es__title__v9p {
  display: block;
  margin: 2px 0 4px;
  color: #1e293b;
}

.c00k_es__muted__v9p {
  margin: 0;
  color: #475569;
}

.c00k_es__btn__v9p {
  margin-left: auto;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  background: #2563eb;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
}

.c00k_es__btn__v9p:hover {
  background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-pattern {
    padding: 2rem 1rem;
  }

  .decorative-shape {
    width: 100px;
    height: 100px;
  }
}
