/* Base Styles */
html {
  font-size: 1rem;
}

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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background-color: #2A8E9E;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-0.2rem);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
}

.btn-outline {
  background-color: transparent;
  color: #2A8E9E;
  border: 0.2rem solid #2A8E9E;
}

.btn-outline:hover {
  background-color: #2A8E9E;
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 2rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 1.4rem;
}

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

.cookie-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.4rem;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 4rem;
  width: auto;
}

.brand-text {
  font-size: 2.4rem;
  font-weight: 900;
  color: #2A8E9E;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2A8E9E;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.4rem;
}

.hamburger span {
  width: 2.5rem;
  height: 0.3rem;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
background: linear-gradient(0deg, rgba(0, 41, 61, 0.80) 0%, rgba(0, 41, 61, 0.80) 100%), url(img/p1.jpg) lightgray 50% / cover no-repeat;
  color: white;
  padding: 12rem 0 8rem;
  margin-top: 8rem;
}

.hero-content {
  max-width: 80rem;
  text-align: left;
}

.hero h1 {
 font-size: 48px;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero p {
font-size: 18px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Section Styles */
section {
  padding: 8rem 0;
}

h2 {
font-size: 48px;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}

h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2A8E9E;
}

.section-subtitle {
  font-size: 1.8rem;
  text-align: center;
  color: #666;
  margin-bottom: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

/* Why Us Section */
.why-us {
  background-color: #f8f9fa;
}

.section-content {
  display: flex;
  align-items: center;
  gap: 6rem;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 30rem;
}

.image-content {
  flex: 1;
  min-width: 30rem;
}

.feature-image,
.career-image,
.learning-image {
  width: 100%;
  height: auto;
  /*border-radius: 1rem;*/
  object-fit: cover;
}

.feature {
  margin-bottom: 3rem;
}

.feature h3 {
  color: #2A8E9E;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Special Features */
.special-features {
  padding: 8rem 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.feature-card {
  flex: 1;
  min-width: 25rem;
  text-align: center;
  padding: 3rem 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 2rem;
  background-color: #2A8E9E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 4rem;
  height: 4rem;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  color: #2A8E9E;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.feature-card p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.cta-center {
  text-align: center;
}

/* Career Focus */
.career-focus {
  background-color: #f8f9fa;
}

.career-focus .text-content {
  order: 2;
}

.career-focus .image-content {
  order: 1;
}

.career-focus ul {
  list-style: none;
  margin: 2rem 0;
}

.career-focus li {
  font-size: 18px;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.career-focus li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2A8E9E;
  font-weight: bold;
}

/* Courses Section */
.courses {
  padding: 8rem 0;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.course-card {
  flex: 1;
  min-width: 30rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-0.5rem);
}

.course-card h3 {
  background-color: #2A8E9E;
  color: white;
  padding: 2rem;
  margin-bottom: 0;
  font-size: 2.2rem;
  text-align: center;
}

.course-content {
  padding: 3rem;
}

.course-content ul {
  list-style: none;
  margin: 2rem 0;
}

.course-content li {
  font-size: 18px;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.course-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2A8E9E;
  font-weight: bold;
}

.course-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
}

.value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}

.price {
  color: #2A8E9E;
  font-size: 2.4rem;
}

/* Global Learning */
.global-learning {
  background-color: #f8f9fa;
}

/* Learning Approach */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.approach-card {
  flex: 1;
  min-width: 25rem;
  padding: 3rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-0.5rem);
}

.approach-card h3 {
  color: #2A8E9E;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.approach-card p {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background-color: #f8f9fa;
}

.contact-content {
  display: flex;
  gap: 6rem;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 30rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
  display: block;
  font-size: 1.6rem;
  color: #2A8E9E;
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  min-width: 30rem;
  background-color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.4rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 12rem;
}

/* Success Page */
.success-page {
  padding: 12rem 0 8rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.success-content {
  max-width: 60rem;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 3rem;
}

.success-content h1 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 2rem;
}

.success-content p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}

.success-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-section {
  flex: 1;
  min-width: 20rem;
}

.footer-section h3,
.footer-section h4 {
  color: #2A8E9E;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.footer-section p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 1rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #2A8E9E;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 0.1rem solid #555;
}

.footer-bottom p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Mobile Styles */
@media (max-width: 768px) {
  html {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 8rem;
    left: -100%;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin-bottom: 1rem;
  }

  .hero {
    padding: 8rem 0 6rem;
    margin-top: 6rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.6rem;
  }

  section {
    padding: 6rem 0;
  }

  h2 {
    font-size: 20px
  }

  .section-content {
    gap: 4rem;
  }

  .text-content {
    min-width: 100%;
  }

  .image-content {
    min-width: 100%;
  }

  .career-focus .text-content {
    order: 1;
  }

  .career-focus .image-content {
    order: 2;
  }

  .features-grid {
    gap: 2rem;
  }

  .feature-card {
    min-width: 100%;
  }

  .courses-grid {
    gap: 2rem;
  }

  .course-card {
    min-width: 100%;
  }

  .course-details {
    flex-direction: column;
    gap: 1rem;
  }

  .approach-grid {
    gap: 2rem;
  }

  .approach-card {
    min-width: 100%;
  }

  .contact-content {
    gap: 4rem;
  }

  .contact-info,
  .contact-form {
    min-width: 100%;
  }

  .footer-content {
    gap: 3rem;
  }

  .footer-section {
    min-width: 100%;
  }

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

  .cookie-buttons {
    justify-content: center;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}
p{
  font-size: 18px!important;
}