/*--------------------------------------
  About Us Page CSS for LingoVerse Academy
----------------------------------------*/

/* Global Variables */
:root {
  --primary-color: #003366;
  --accent-color: #ffd400;
  --bg-color: #ffffff;
  --text-color: #333333;
  --font-family: 'Roboto', Arial, sans-serif;
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --container-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: #f9f9f9;
  color: var(--text-color);
  line-height: 1.6;
}

/* About Container */
.about-container {
  max-width: 800px;
  margin: 3rem auto;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--container-shadow);
  padding: 2rem;
}

/* Hero (Intro) Section */
.hero-about {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}

.hero-about h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero-about p {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Section common styling */
.about-container section {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.about-container section:last-of-type {
  border-bottom: none;
}

.about-container h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.about-container p {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
  text-justify: inter-word;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .about-container {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .hero-about h1 {
    font-size: 2rem;
  }
  
  .about-container h2 {
    font-size: 1.75rem;
  }
  
  .about-container p {
    font-size: 0.95rem;
  }
}
