:root {
  --primary-color: #6ab04c;
  --dark-color: #333;
  --light-color: #f4f4f4;
  --text-color: #444;
  --heading-color: #333;
  --max-width: 1200px;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

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

h1,
h2,
h3,
h4 {
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

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

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--dark-color);
  color: var(--dark-color);
}

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

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--heading-color);
  text-align: center;
  padding: 1rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  margin-bottom: 3rem;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* Features Section */
.features {
  padding: 3rem 0;
}

.feature {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature p {
  margin-bottom: 1.5rem;
}

/* Team Section */
.team {
  padding: 3rem 0;
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.team-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.courses-intro {
  margin-bottom: 2rem;
}

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

.course {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-info {
  padding: 1.5rem;
  flex-grow: 1;
}

.course-info h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.course-info h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.course-list {
  list-style-type: none;
  margin-top: 1rem;
}

.course-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.course-list li:last-child {
  border-bottom: none;
}

/* Learning Section */
.learning {
  padding: 3rem 0;
  background-color: var(--light-color);
}

/* Webinars Section */
.webinars {
  padding: 3rem 0;
}

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.webinar {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.webinar-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 1rem;
}

.webinar-overlay h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.webinar-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* FAQ Section */
.faq {
  padding: 3rem 0;
  background-color: var(--light-color);
}

.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.faq-answer {
  padding: 1.5rem;
}

/* Contact Section */
.contact {
  padding: 3rem 0;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item i {
  margin-right: 1rem;
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 2rem 0;
  font-size: 0.9rem;
}

footer a {
  color: #ddd;
}

footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  margin: 0 1rem;
}

.copyright {
  text-align: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f8f8;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

/* Media Queries */
@media (max-width: 768px) {
  .team-grid,
  .course-grid,
  .webinar-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .feature h2 {
    font-size: 1.5rem;
  }
}
