@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

:root {
  --primary-blue: #004d9c;
  --secondary-blue: #007bff;
  --dark-blue: hsl(273, 86%, 44%);
  --light-gray: #f4f7f9;
  --text-color: #333;
  --white: #fff;
  --bg: #ffffff;
  --text: #222;
  --muted: #6b7280;
  --accent: #e76f39;
  --accent-2: #d9534f;
  --card: #fbfbfb;
  --line: #e6e7ea;
  --bg: #ffffff;
--text: #111827;
--muted: #6b7280;
--accent: #059669;
--card: #f9fafb;
--line: #e5e7eb;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}
.section {
  padding: 48px 18px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--dark-blue);
}

/* Header and Navigation */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.btn{
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  background-color: blue;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  height: 40px;
}

.nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
}

.demo-button {
  background-color: var(--secondary-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.demo-button:hover {
  background-color: #0056b3;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-content {
  flex: 1;
  z-index: 1;
}

.hero-content .breadcrumbs {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--white);
}

.hero-content .subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  border: 2px solid transparent;
}

.btn.btn-primary {
  background-color: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.btn.btn-primary:hover {
  background-color: var(--light-gray);
}

.btn.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-image-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features Section */
.features-section {
  background-color: var(--light-gray);
  padding: 4rem 2rem;
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 50%;
  object-fit: cover;
}

/* Courses Section */
#courses-section h2 {
  text-align: center;
  margin: 40px 0;
  font-size: 28px;
}
.phones {
  display: flex;
  justify-content: center; /* dhexda dhig */
  gap: 80px; /* firaaqo u dhaxeysa */
  flex-wrap: wrap; /* haddii shaashadu yar tahay hoos ha isu dhigaan */
}

.phones img {
  width: 240px; /* cabbir isku mid ah */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.tabs button {
  background: none;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.tabs button.active,
.tabs button:hover {
  border-color: var(--secondary-blue);
  color: var(--secondary-blue);
  font-weight: bold;
}

.course-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.course {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.course:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.course img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  color: white;
  background: #00b894;
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-block;
  margin: 8px 0;
  font-weight: bold;
}

.price.free {
  background: #e74c3c;
}

.details {
  font-size: 14px;
  margin-top: 5px;
  color: #666;
}

/* Icon Blocks Section */
.icon-section {
  padding: 50px 2rem;
  background: var(--white);
  margin-top: 30px;
}

.icon-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  text-align: center;
}

.icon-block {
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
  background: #f9f9f9;
  border: 1px solid #eee;
}

.icon-block:hover {
  background: var(--secondary-blue);
  color: #fff;
  transform: translateY(-5px);
  border-color: var(--secondary-blue);
}
.icon-block:hover h4,
.icon-block:hover p {
  color: var(--white);
}

.icon-block i {
  font-size: 35px;
  margin-bottom: 15px;
  display: block;
  color: #e74c3c;
}

.icon-block:hover i {
  color: #fff;
}
/* Scroll-to-top button style */
#scrollTopBtn {
  position: fixed;
  right: 18px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f28c1a; /* orange */
  border: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(24px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 9999;
}

/* icon inside */
#scrollTopBtn .chev {
  font-size: 30px;
  color: white;
  line-height: 1;
  top: -10px;
  transform: translateY(-2px); /* center visually */
}

/* visible state */
#scrollTopBtn.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* small hover effect */
#scrollTopBtn:hover {
  transform: translateY(0) scale(1.06);
}


/* General Page Styling */
.page-main {
  padding: 4rem 0;
}

.page-main h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.page-main p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Solutions Page */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.solution-card {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

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

.solution-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* About Page */
.team-section {
  padding: 50px 2rem;
  background: #fff;
}
.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}
.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #eee;
}
.team-member .role {
  font-style: italic;
  color: #777;
  margin-bottom: 10px;
}

.stats-section {
  padding: 50px 2rem;
  background-color: var(--dark-blue);
  color: white;
}
.stats-section h2 {
  color: var(--white);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item .number {
  font-size: 40px;
  font-weight: bold;
  display: block;
}
.stat-item .label {
  font-size: 16px;
  color: #bdc3c7;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: center;
}
.contact-info p {
  text-align: left;
  margin: 0.5rem 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-blue);
  padding-bottom: 0.5rem;
  display: inline-block;
  color: var(--white);
}
.footer-col p {
  font-size: 0.9rem;
  margin: 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--secondary-blue);
}
.social-links a {
  display: inline-block;
  margin-right: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s;
  text-decoration: none;
  color: var(--white);
}
.social-links a:hover {
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 239, 239, 0.1);
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  text-decoration: none;
  margin: 9px 10px;
  font-size: 28px;
  color: #333;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #e9eef1; /* LinkedIn blue */
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-box .icon {
  font-size: 30px;
  margin-bottom: 15px;
  display: block;
}

.feature-box h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.feature-box .btn {
  display: inline-block;
  background: #fff;
  color: #e74c3c;
  border: 1px solid #e74c3c;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  transition: 0.3s ease;
}

.feature-box .btn:hover {
  background: #e74c3c;
  color: #fff;
}

.feature-box.highlight {
  background: #444;
  color: #fff;
}

.feature-box.highlight .btn {
  border-color: #fff;
  color: #fff;
}
h1 {
  text-align: center;
  margin-top: 40px;
  font-size: 34px;
  font-weight: bold;
  color: var(--primary-blue);
}

.blog-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: bold;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.blog-content a {
  color: #2c9f45;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-content .date {
  display: block;
  font-size: 13px;
  color: #888;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 24px;
  align-items: center;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}
.phone {
  width: 240px;
  max-width: 90%;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(180deg, #fff, #fcfcfc);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  display: inline-block;
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* centered text list */
.center-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.title {
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--muted);
}
.headline {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}
.feature-item {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}
.feature-item.small {
  font-weight: 500;
  color: var(--muted);
  font-size: 14px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

/* VIDEO + WHEEL */
.media {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  margin-top: 40px;
  align-items: start;
}
.video-box {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  padding: 0;
}
.video-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}
.wheel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  min-height: 220px;
}
.wheel img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* engagement numbers */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 10px;
  text-align: center;
}
.stat .num {
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
}
.stat .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* login.css */

.login-page-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px); /* Adjust based on header/footer height */
  padding: 20px;
  background-color: #f4f7f6;
}

.login-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  text-align: center;
}

.form-toggle-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.form-toggle-buttons button {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.form-toggle-buttons button.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #333;
  font-size: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: #007bff;
  outline: none;
}

.btn-primaryy {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primaryy:hover {
  background-color: #0056b3;
}
.heading {
  text-align: center;
  margin-bottom: 40px;
}
.heading small {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
}
.heading h2 {
  font-size: 30px;
  margin: 6px 0;
}
.heading p {
  color: var(--muted);
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stars {
  color: #facc15;
  font-size: 18px;
}
.text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.author .name {
  font-weight: 600;
  font-size: 14px;
}
.author .role {
  font-size: 12px;
  color: var(--muted);
}

/* responsive design */
@media (max-width: 600px) {
  .login-container {
    padding: 20px;
  }

  .form-toggle-buttons {
    flex-direction: column;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .phone {
    width: 200px;
  }
  .feature-list {
    max-width: 100%;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .heading h2 {
    font-size: 22px;
  }
  .feature-cards .card{
    display: flex;
    width: 80%;
    margin-right: 20px;
    font-size: 1rem;
    
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-image-container {
    display: none;
  }
  .hero-container {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .center-features {
    order: 3;
    grid-column: 1/-1;
  }
  .media {
    grid-template-columns: 1fr;
  }
  .wheel {
    order: 4;
  }
  .phone-wrap {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .nav.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .header-actions {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
  .hamburger-menu.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  .page-main h1 {
    font-size: 2.5rem;
  }
  .features-section h2,
  .icon-section h2,
  .team-section h2,
  .stats-section h2,
  #courses-section h2 {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .phone {
    width: 170px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .headline {
    font-size: 20px;
  }
}
