:root {
  --primary-color: #6a4c93;
  --primary-color-light: #8a6cb3;
  --secondary-color: #1b998b;
  --accent-color: #ffb703;
  --text-color: #333333;
  --light-text: #f9f9f9;
  --background-color: #f5f5f5;
  --card-background: #ffffff;
  --footer-background: #2b2b2b;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
}

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

a:hover {
  color: var(--accent-color);
}

/* Header */
header {
  background-color: var(--card-background);
  box-shadow: 0 2px 10px var(--shadow-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo svg {
  width: 100%;
  height: 100%;
}

header h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width var(--transition-speed);
}

nav ul li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(106, 76, 147, 0.8), rgba(27, 153, 139, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.5"/></svg>');
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  padding-top: 70px;
}

.hero-content {
  max-width: 800px;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.cta-button:hover {
  color: var(--text-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.3);
}

/* About Section */
.about {
  padding: 100px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-visual {
  flex: 1;
  max-width: 400px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--card-background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
  transition: transform var(--transition-speed);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* Resources Section */
.resources {
  padding: 100px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.resource-card {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: box-shadow var(--transition-speed);
}

.resource-card:hover {
  box-shadow: 0 10px 25px var(--shadow-color);
}

.resource-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
}

.resource-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-speed);
  display: inline-block;
}

.resource-link:hover::after {
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: var(--light-text);
}

.testimonials h2 {
  color: var(--light-text);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.testimonial {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  position: relative;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
}

.quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.2;
}

.author {
  margin-top: 20px;
  font-weight: 500;
  text-align: right;
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background-color: var(--card-background);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
}

/* Educational Section */
.educational {
  padding: 80px 0;
  background-color: var(--background-color);
}

.educational-links ul {
  list-style: none;
  margin-top: 20px;
}

.educational-links li {
  margin-bottom: 10px;
}

.educational-links a {
  display: inline-block;
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-color-light);
  width: 100%;
  transition: all var(--transition-speed);
}

.educational-links a:hover {
  border-bottom-color: var(--accent-color);
  padding-left: 10px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.contact h2 {
  color: var(--light-text);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: inherit;
}

.submit-button {
  background-color: var(--accent-color);
  color: var(--text-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.3);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.social-links {
  grid-column: 1 / -1;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color var(--transition-speed);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--text-color);
}

/* Footer */
footer {
  background-color: var(--footer-background);
  color: var(--light-text);
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo svg {
  margin-bottom: 15px;
}

.footer-logo p {
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--light-text);
  opacity: 0.8;
  transition: opacity var(--transition-speed);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-visual {
    order: -1;
    margin-bottom: 30px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .services-grid,
  .resources-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
