* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: #00345f;
}

/* NAVBAR */
.navbar {
  height: 125px;
  background: linear-gradient(90deg, #002b55, #003b70);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 75px;
}

.logo {
  color: white;
  text-align: center;
  line-height: 1;
}

.logo-small {
  font-size: 24px;
  letter-spacing: 2px;
}

.logo-main {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-red {
  background: red;
  color: white;
  display: inline-block;
  margin-top: 3px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  border-radius: 6px;
}

nav {

  display: flex;

  gap: 18px;

  align-items: center;

  flex-wrap: wrap;
}

nav a {

  color: white;

  text-decoration: none;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.5px;

  white-space: nowrap;
}

nav a.active {
  color: #ffea00;
  border-bottom: 4px solid #ffea00;
  padding-bottom: 12px;
}

/* HERO IMAGE */

.hero {
  width: 50%;
  background: white;
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero img {
  width: 50%;
  max-width: 100px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* WHY SECTION */
.why {
  background: #f8f8f8;
  text-align: center;
  padding: 28px 50px 45px;
}

.why h2 {
  font-size: 36px;
  color: #00345f;
  margin-bottom: 8px;
}

.underline {
  width: 60px;
  height: 4px;
  background: #00345f;
  margin: 0 auto 30px;
}

.features {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 35px;
}

.feature {
  width: 25%;
  color: #00345f;
}

.icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 900;
}

.feature p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #002b55, #003b70);
  color: white;
  text-align: center;
  padding: 18px;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar {
    height: auto;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    height: auto;
  }

  .hero img {
    height: auto;
    object-fit: contain;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 100%;
  }
}

/* ========================= */
/* ABOUT PAGE */
/* ========================= */

.about-hero {

  height: 420px;

  background-image:
  linear-gradient(rgba(0,0,0,0.45),
  rgba(0,0,0,0.45)),
  url("images/intro.png");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.about-overlay {
  color: white;
  padding: 30px;
}

.about-overlay h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.about-overlay p {
  font-size: 24px;
  max-width: 900px;
  line-height: 1.6;
}

.about-content {

  padding: 70px 60px;

  background: #f7f7f7;
}

.about-box {

  background: white;

  max-width: 1100px;

  margin: auto;

  padding: 50px;

  border-radius: 18px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.12);

  margin-bottom: 50px;
}

.about-box h2 {

  color: #003b70;

  font-size: 40px;

  margin-bottom: 25px;
}

.about-box p {

  font-size: 20px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 20px;
}

.about-cards {

  display: flex;

  justify-content: center;

  gap: 30px;

  flex-wrap: wrap;
}

.about-card {

  width: 320px;

  background: white;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.10);

  transition: 0.3s;
}

.about-card:hover {

  transform: translateY(-8px);
}

.about-card h3 {

  color: #003b70;

  font-size: 24px;

  margin-bottom: 20px;
}

.about-card p {

  color: #444;

  font-size: 18px;

  line-height: 1.7;
}

/* ================================= */
/* ABOUT PAGE */
/* ================================= */

.about-hero {

  height: 520px;

  background-image:
  linear-gradient(rgba(255,255,255,0.10),
  rgba(255,255,255,0.10)),
  url("classroom.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 30px;
}

/* BOARD */

.about-board {

  background: rgba(255,255,255,0.88);

  border: 10px solid #92b85d;

  padding: 50px 70px;

  max-width: 800px;

  text-align: center;

  box-shadow: 0 8px 25px rgba(0,0,0,0.20);
}

.about-board h1 {

  font-size: 72px;

  color: #003b70;

  margin-bottom: 25px;

  font-weight: 900;
}

.about-board p {

  font-size: 30px;

  line-height: 1.6;

  color: #222;
}

/* CONTENT SECTION */

.about-section {

  background: #f7f7f7;

  padding: 70px 70px;

  display: flex;

  justify-content: space-between;

  gap: 50px;

  align-items: flex-start;
}

/* LEFT */

.about-left {

  width: 42%;
}

.about-left h2 {

  font-size: 56px;

  color: #003b70;

  margin-bottom: 15px;
}

.yellow-line {

  width: 60px;

  height: 5px;

  background: #ffcc00;

  margin-bottom: 35px;
}

.about-left p {

  font-size: 24px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 28px;
}

/* RIGHT */

.about-right {

  width: 58%;

  display: flex;

  gap: 30px;
}

/* CARD */

.about-card {

  background: white;

  width: 33%;

  padding: 40px 30px;

  border-radius: 18px;

  text-align: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.10);

  transition: 0.3s;
}

.about-card:hover {

  transform: translateY(-10px);
}

.about-icon {

  font-size: 54px;

  margin-bottom: 25px;
}

.about-card h3 {

  font-size: 30px;

  color: #003b70;

  margin-bottom: 18px;
}

.card-line {

  width: 50px;

  height: 4px;

  background: #ffcc00;

  margin: 0 auto 25px;
}

.about-card p {

  font-size: 21px;

  line-height: 1.8;

  color: #444;
}

/* MOBILE */

@media (max-width: 1100px) {

  .about-section {

    flex-direction: column;
  }

  .about-left,
  .about-right {

    width: 100%;
  }

  .about-right {

    flex-direction: column;
  }

  .about-card {

    width: 100%;
  }

  .about-board h1 {

    font-size: 48px;
  }

  .about-board p {

    font-size: 22px;
  }

  .about-left h2 {

    font-size: 42px;
  }
}

/* ================================= */
/* MATHIMATA PAGE */
/* ================================= */

.mathimata-image {

  width: 100%;

  background: #ffffff;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 0;
}

.mathimata-image img {

  width: 100%;

  max-width: 1600px;

  height: auto;

  display: block;
}

/* MOBILE */

@media (max-width: 900px) {

  .mathimata-image img {

    width: 100%;
  }
}

/* ================================= */
/* SUMMER PAGE */
/* ================================= */

.summer-image {

  width: 100%;

  background: white;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 0;
}

.summer-image img {

  width: 100%;

  max-width: 1600px;

  height: auto;

  display: block;
}

/* MOBILE */

@media (max-width: 900px) {

  .summer-image img {

    width: 100%;
  }
}

/* ================================= */
/* FOUNDER MESSAGE */
/* ================================= */

.founder-message {

  background: #f3f3f3;

  padding: 80px 40px;
}

.founder-box {

  max-width: 1100px;

  margin: auto;

  background: white;

  padding: 70px;

  border-radius: 20px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.10);

  text-align: center;
}

.founder-box h2 {

  font-size: 42px;

  color: #003b70;

  margin-bottom: 15px;
}

.founder-box h3 {

  font-size: 28px;

  color: #d62828;

  margin-bottom: 45px;

  font-style: italic;
}

.founder-box p {

  font-size: 24px;

  line-height: 2.1;

  color: #444;

  margin-bottom: 30px;

  font-style: italic;
}

.signature {

  font-size: 32px !important;

  color: #003b70 !important;

  font-weight: bold;

  margin-top: 50px;

  font-style: italic;
}

/* MOBILE */

@media (max-width: 900px) {

  .founder-box {

    padding: 35px;
  }

  .founder-box h2 {

    font-size: 30px;
  }

  .founder-box p {

    font-size: 19px;

    line-height: 1.9;
  }

  .signature {

    font-size: 24px !important;
  }
}

/* ================================= */
/* VOICE PAGE */
/* ================================= */

.voice-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 40, 90, 0.45), rgba(180, 0, 80, 0.45)),
    url("images/reasons_1.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  padding: 60px 30px;
}

.voice-hero {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.voice-hero h1 {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.45);
}

.voice-hero p {
  font-size: 28px;
  font-weight: bold;
  color: #ffea00;
}

.reasons-container {
  max-width: 1250px;
  margin: auto;
}

.reason {
  position: relative;
  margin-bottom: 26px;
  padding: 28px 45px 28px 90px;
  color: white;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.reason::before {
  content: "“";
  position: absolute;
  left: 25px;
  top: -5px;
  font-size: 80px;
  font-weight: bold;
  color: white;
}

.number {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: #9abc20;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 0 35px 35px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  font-weight: 900;
}

.reason p {
  font-size: 21px;
  line-height: 1.55;
  font-weight: 600;
}

.reason h3 {
  text-align: right;
  font-size: 22px;
  margin-top: 12px;
  font-style: italic;
}

.red { background: rgba(206, 28, 37, 0.95); }
.pink { background: rgba(190, 22, 80, 0.95); }
.magenta { background: rgba(180, 20, 120, 0.95); }
.purple { background: rgba(85, 45, 145, 0.95); }
.blue { background: rgba(30, 45, 160, 0.95); }
.green { background: rgba(0, 150, 90, 0.95); }
.orange { background: rgba(240, 125, 20, 0.95); }
.gray { background: rgba(90, 90, 90, 0.95); }

@media (max-width: 900px) {
  .voice-hero h1 {
    font-size: 40px;
  }

  .voice-hero p {
    font-size: 20px;
  }

  .reason {
    padding: 25px 25px 25px 65px;
  }

  .reason p {
    font-size: 17px;
  }

  .number {
    width: 52px;
    height: 52px;
    font-size: 30px;
    left: -12px;
  }
}

/* ================================= */
/* DRASEIS PAGE */
/* ================================= */

.actions-page {
  background: #f8f3f5;
  padding: 70px 60px;
}

.actions-title {
  text-align: center;
  margin-bottom: 60px;
}

.actions-title h1 {
  font-size: 60px;
  color: #003b70;
  margin-bottom: 15px;
}

.actions-title p {
  font-size: 24px;
  color: #555;
}

.azalea-section,
.poem-section {
  max-width: 1250px;
  margin: 0 auto 70px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.azalea-image,
.poem-image {
  flex: 1;
  text-align: center;
}

.azalea-image img,
.poem-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.azalea-text,
.poem-text {
  flex: 1;
  background: white;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.azalea-text h2,
.poem-text h2 {
  font-size: 36px;
  color: #003b70;
  margin-bottom: 25px;
}

.azalea-text p,
.poem-text p {
  font-size: 21px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.poem-section {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
}

@media (max-width: 900px) {
  .actions-page {
    padding: 40px 20px;
  }

  .azalea-section,
  .poem-section {
    flex-direction: column;
  }

  .actions-title h1 {
    font-size: 42px;
  }

  .actions-title p {
    font-size: 19px;
  }

  .azalea-text,
  .poem-text {
    padding: 30px;
  }
}

/* ================================= */
/* AZALEA DESCRIPTION IMAGE */
/* ================================= */

.azalea-description-image {

  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;
}

.azalea-description-image img {

  width: 100%;

  max-width: 750px;

  border-radius: 18px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ================================= */
/* SPIN INTRO */
/* ================================= */

.spin-intro {

  max-width: 1300px;

  margin: 0 auto 80px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 60px;

  background: white;

  padding: 55px;

  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* LEFT TEXT */

.spin-intro-text {

  flex: 1;
}

.spin-intro-text h2 {

  font-size: 56px;

  color: #003b70;

  margin-bottom: 15px;
}

.spin-intro-line {

  width: 70px;

  height: 5px;

  background: #ffcc00;

  margin-bottom: 30px;
}

.spin-intro-text p {

  font-size: 24px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 25px;
}

.spin-intro-text strong {

  color: #c1121f;
}

/* RIGHT IMAGE */

.spin-intro-image {

  flex: 1;

  text-align: center;
}

.spin-intro-image img {

  width: 100%;

  max-width: 520px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* MOBILE */

@media (max-width: 900px) {

  .spin-intro {

    flex-direction: column;

    padding: 35px;
  }

  .spin-intro-text h2 {

    font-size: 40px;
  }

  .spin-intro-text p {

    font-size: 19px;
  }
}

/* ================================= */
/* JUNIOR PAGE */
/* ================================= */

.junior-page {

  background:
  linear-gradient(
  rgba(255,255,255,0.92),
  rgba(255,255,255,0.92)),

  url("images/classroom.jpg");

  background-size: cover;
  background-position: center;

  min-height: 100vh;

  padding: 70px 40px;
}

/* TITLE */

.junior-title {

  text-align: center;

  margin-bottom: 50px;
}

.junior-title h1 {

  font-size: 64px;

  color: #7b0099;

  margin-bottom: 12px;

  font-weight: 900;
}

.junior-title p {

  font-size: 28px;

  color: #444;
}

/* IMAGE */

.junior-image-container {

  max-width: 1400px;

  margin: auto;

  background: white;

  padding: 25px;

  border-radius: 25px;

  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.junior-image-container img {

  width: 100%;

  border-radius: 18px;

  display: block;
}

/* MOBILE */

@media (max-width: 900px) {

  .junior-page {

    padding: 40px 15px;
  }

  .junior-title h1 {

    font-size: 42px;
  }

  .junior-title p {

    font-size: 20px;
  }

  .junior-image-container {

    padding: 12px;
  }
}

/* ================================= */
/* MORIA CALCULATOR PAGE */
/* ================================= */

.moria-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #003b70, #0066a6);
  padding: 80px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.moria-box {
  background: white;
  max-width: 750px;
  width: 100%;
  padding: 55px;
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  text-align: center;
}

.moria-box h1 {
  font-size: 48px;
  color: #003b70;
  margin-bottom: 15px;
}

.moria-subtitle {
  font-size: 21px;
  color: #555;
  margin-bottom: 40px;
}

.moria-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #003b70;
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #d6d6d6;
  border-radius: 12px;
  font-size: 18px;
}

.input-group input:focus {
  outline: none;
  border-color: #ffcc00;
}

.moria-form button {
  margin-top: 20px;
  padding: 18px;
  background: #ffcc00;
  color: #003b70;
  border: none;
  border-radius: 14px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

.moria-form button:hover {
  background: #ffd936;
}

.result-box {
  margin-top: 30px;
  padding: 25px;
  background: #f2f7ff;
  border-left: 6px solid #003b70;
  border-radius: 12px;
  font-size: 23px;
  color: #003b70;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .moria-box {
    padding: 35px 25px;
  }

  .moria-box h1 {
    font-size: 34px;
  }
}

/* DROPDOWN MENU */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.dropdown > a.active {
  color: #ffea00;
  border-bottom: 4px solid #ffea00;
  padding-bottom: 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  border-radius: 8px;
  z-index: 9999;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  color: #003b70;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  background: white;
  border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
  background: #003b70;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ================================= */
/* BIOGRAPHIKA PAGE */
/* ================================= */

.bio-page {

  background: #f4f5f7;

  padding: 60px 20px 80px;
}

/* TITLE */

.bio-title {

  text-align: center;

  margin-bottom: 45px;
}

.bio-title h1 {

  font-size: 56px;

  color: #003b70;

  margin-bottom: 12px;
}

.bio-line {

  width: 180px;

  height: 5px;

  background: #d62828;

  margin: auto;

  border-radius: 10px;
}

/* BIO CARD */

.bio-container {

  max-width: 1250px;

  margin: 0 auto 45px;

  background: white;

  padding: 45px;

  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* IMAGE */

.bio-image {

  text-align: center;

  margin-bottom: 40px;
}

.bio-image img {

  width: 100%;

  max-width: 650px;

  border-radius: 6px;

  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* TEXT */

.bio-content h2 {

  font-size: 48px;

  color: #002b55;

  margin-bottom: 8px;
}

.bio-content h3 {

  font-size: 28px;

  color: #d62828;

  margin-bottom: 35px;

  font-weight: 700;
}

.bio-content p {

  font-size: 24px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 26px;

  text-align: justify;
}

/* QUOTE */

.bio-quote {

  margin-top: 45px;

  background: #eef2f7;

  padding: 28px 35px;

  border-radius: 10px;

  font-size: 28px;

  font-style: italic;

  color: #003b70;

  font-weight: bold;

  text-align: center;
}

/* MOBILE */

@media (max-width: 900px) {

  .bio-container {

    padding: 25px;
  }

  .bio-title h1 {

    font-size: 38px;
  }

  .bio-content h2 {

    font-size: 34px;
  }

  .bio-content h3 {

    font-size: 22px;
  }

  .bio-content p {

    font-size: 18px;

    line-height: 1.7;
  }

  .bio-quote {

    font-size: 20px;
  }
}

/* ================================= */
/* ONLINE LESSONS PAGE */
/* ================================= */

.online-section {

  background: #f5f7fa;

  padding: 70px 40px;
}

.online-box {

  max-width: 1200px;

  margin: 0 auto 50px;

  background: white;

  padding: 55px;

  border-radius: 20px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  text-align: center;
}

.online-box h1 {

  font-size: 56px;

  color: #003b70;

  margin-bottom: 15px;
}

.online-line {

  width: 90px;

  height: 5px;

  background: #ffcc00;

  margin: 0 auto 35px;

  border-radius: 10px;
}

.online-box p {

  font-size: 23px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 25px;
}

/* GRID */

.online-grid {

  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

/* CARD */

.online-card {

  background: white;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  border-top: 6px solid #003b70;

  transition: 0.3s;
}

.online-card:hover {

  transform: translateY(-8px);
}

.online-card h3 {

  font-size: 30px;

  color: #003b70;

  margin-bottom: 18px;
}

.online-card p {

  font-size: 20px;

  line-height: 1.8;

  color: #444;
}

/* MOBILE */

@media (max-width: 900px) {

  .online-grid {

    grid-template-columns: 1fr;
  }

  .online-box {

    padding: 35px 25px;
  }

  .online-box h1 {

    font-size: 38px;
  }

  .online-box p {

    font-size: 18px;
  }

  .online-card h3 {

    font-size: 24px;
  }

  .online-card p {

    font-size: 17px;
  }
}

/* ONLINE CARD COLORS */

.orange-title {
  color: #e67e22 !important;
}

.purple-title {
  color: #8e44ad !important;
}

.red-title {
  color: #d62828 !important;
}

.green-title {
  color: #2a9d8f !important;
}

.blue-title {
  color: #4a6fa5 !important;
}

.yellow-title {
  color: #d4a017 !important;
}

.pink-title {
  color: #c2185b !important;
}

.teal-title {
  color: #00796b !important;
}

/* ================================= */
/* MELETI PAGE */
/* ================================= */

.study-page {
  background: #f5f7fa;
  padding: 70px 40px;
}

.study-title {
  max-width: 1150px;
  margin: 0 auto 50px;
  text-align: center;
}

.study-title h1 {
  font-size: 54px;
  color: #003b70;
  margin-bottom: 15px;
}

.study-line {
  width: 100px;
  height: 5px;
  background: #ffcc00;
  margin: 0 auto 28px;
  border-radius: 10px;
}

.study-title p {
  font-size: 22px;
  line-height: 1.8;
  color: #333;
}

.study-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.study-card {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-top: 6px solid #003b70;
}

.study-card h2 {
  font-size: 30px;
  color: #003b70;
  margin-bottom: 22px;
}

.study-card p {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
  text-align: justify;
}

.study-card:nth-child(1) h2 {
  color: #e67e22;
}

.study-card:nth-child(2) h2 {
  color: #8e44ad;
}

.study-card:nth-child(3) h2 {
  color: #2a9d8f;
}

.study-card:nth-child(4) h2 {
  color: #d62828;
}

@media (max-width: 900px) {
  .study-page {
    padding: 45px 20px;
  }

  .study-title h1 {
    font-size: 36px;
  }

  .study-title p {
    font-size: 18px;
  }

  .study-grid {
    grid-template-columns: 1fr;
  }

  .study-card {
    padding: 28px;
  }

  .study-card h2 {
    font-size: 24px;
  }

  .study-card p {
    font-size: 17px;
    text-align: left;
  }
}

/* STUDY IMAGE */

.study-image {

  max-width: 1300px;

  margin: 0 auto 50px;

  text-align: center;
}

.study-image img {

  width: 100%;

  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  display: block;
}

.wide-card {
  grid-column: 1 / -1;
}

/* ================================= */
/* PARENTS PAGE */
/* ================================= */

.parents-page {

  background: #f5f7fa;

  padding: 70px 40px;
}

/* TITLE */

.parents-title {

  text-align: center;

  max-width: 1100px;

  margin: 0 auto 45px;
}

.parents-title h1 {

  font-size: 56px;

  color: #003b70;

  margin-bottom: 15px;
}

.parents-line {

  width: 100px;

  height: 5px;

  background: #ffcc00;

  margin: 0 auto 28px;

  border-radius: 10px;
}

.parents-title p {

  font-size: 24px;

  color: #444;

  line-height: 1.8;
}

/* IMAGE */

.parents-image {

  max-width: 1200px;

  margin: 0 auto 50px;

  text-align: center;
}

.parents-image img {

  width: 100%;

  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CONTENT BOX */

.parents-box {

  max-width: 1200px;

  margin: auto;

  background: white;

  padding: 55px;

  border-radius: 22px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.parents-box p {

  font-size: 22px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 24px;

  text-align: justify;
}

.parents-box ul {

  margin-left: 30px;

  margin-bottom: 28px;
}

.parents-box li {

  font-size: 22px;

  line-height: 1.9;

  color: #003b70;

  font-weight: bold;
}

/* MOBILE */

@media (max-width: 900px) {

  .parents-page {

    padding: 45px 20px;
  }

  .parents-title h1 {

    font-size: 38px;
  }

  .parents-title p {

    font-size: 18px;
  }

  .parents-box {

    padding: 30px 25px;
  }

  .parents-box p,
  .parents-box li {

    font-size: 17px;

    text-align: left;
  }
}

/* ================================= */
/* LIBRARY PAGE */
/* ================================= */

.library-page {

  background: #f5f7fa;

  padding: 70px 40px;
}

/* TITLE */

.library-title {

  text-align: center;

  max-width: 1100px;

  margin: 0 auto 45px;
}

.library-title h1 {

  font-size: 56px;

  color: #003b70;

  margin-bottom: 15px;
}

.library-line {

  width: 100px;

  height: 5px;

  background: #ffcc00;

  margin: 0 auto 28px;

  border-radius: 10px;
}

.library-title p {

  font-size: 24px;

  color: #444;

  line-height: 1.8;
}

/* IMAGE */

.library-image {

  max-width: 1200px;

  margin: 0 auto 50px;

  text-align: center;
}

.library-image img {

  width: 100%;

  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CONTENT BOX */

.library-box {

  max-width: 1200px;

  margin: auto;

  background: white;

  padding: 55px;

  border-radius: 22px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.library-box p {

  font-size: 22px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 24px;

  text-align: justify;
}

/* MOBILE */

@media (max-width: 900px) {

  .library-page {

    padding: 45px 20px;
  }

  .library-title h1 {

    font-size: 38px;
  }

  .library-title p {

    font-size: 18px;
  }

  .library-box {

    padding: 30px 25px;
  }

  .library-box p {

    font-size: 17px;

    text-align: left;
  }
}

.library-highlight {

  color: #c1121f !important;

  font-style: italic;

  font-weight: 700;

  font-size: 24px;

  line-height: 1.9;

  text-align: center;

  margin-top: 35px;
}

.junior-page-new {
  background: #f5f7fa;
  padding: 70px 40px;
}

.junior-title-new {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 45px;
}

.junior-title-new h1 {
  font-size: 56px;
  color: #003b70;
  margin-bottom: 15px;
}

.junior-line {
  width: 100px;
  height: 5px;
  background: #ffcc00;
  margin: 0 auto 28px;
  border-radius: 10px;
}

.junior-title-new p {
  font-size: 24px;
  color: #444;
}

.junior-main-image {
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}

.junior-main-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.junior-box {
  max-width: 1200px;
  margin: auto;
  background: white;
  padding: 55px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.junior-box p {
  font-size: 22px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 24px;
  text-align: justify;
}

.junior-points {
  margin: 35px 0;
}

.junior-point {
  background: #eef2f7;
  color: #003b70;
  padding: 18px 22px;
  margin-bottom: 14px;
  border-left: 6px solid #ffcc00;
  border-radius: 10px;
  font-size: 21px;
  font-weight: bold;
}

.junior-highlight {
  color: #c1121f;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-top: 35px;
}

.junior-quote {
  color: #003b70;
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

/* ================================= */
/* SUMMER JUNIOR PAGE */
/* ================================= */

.summer-junior-page {
  background: #f5f7fa;
  padding: 70px 40px;
}

.summer-junior-title {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 45px;
}

.summer-junior-title h1 {
  font-size: 56px;
  color: #003b70;
  margin-bottom: 15px;
}

.summer-junior-line {
  width: 100px;
  height: 5px;
  background: #ffcc00;
  margin: 0 auto 28px;
  border-radius: 10px;
}

.summer-junior-title p {
  font-size: 24px;
  color: #444;
}

.summer-junior-image {

  width: 100%;

  margin: 0;

  padding: 0;
}

.summer-junior-image img {

  width: 100%;

  height: auto;

  display: block;
}

@media (max-width: 900px) {
  .summer-junior-page {
    padding: 45px 20px;
  }

  .summer-junior-title h1 {
    font-size: 38px;
  }

  .summer-junior-title p {
    font-size: 18px;
  }

  .summer-junior-image {
    padding: 12px;
  }
}

/* ================================= */
/* FOREIGN LANGUAGES PAGE */
/* ================================= */

.languages-hero {
  min-height: 520px;

  background-image:
  linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
  url("dim_junior_english.png");

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  background-color: #8ab324;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.languages-overlay {

  color: white;

  padding: 30px;
}

.languages-overlay h1 {

  font-size: 72px;

  margin-bottom: 20px;

  font-weight: 900;
}

.languages-overlay p {

  font-size: 28px;

  font-weight: bold;

  color: #ffea00;
}

.languages-page {

  background: #f5f7fa;

  padding: 70px 40px;
}

.languages-box {

  max-width: 1200px;

  margin: auto;

  background: white;

  padding: 60px;

  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.languages-box p {

  font-size: 23px;

  line-height: 1.9;

  color: #333;

  margin-bottom: 28px;

  text-align: justify;
}

.languages-highlight {

  background: #eef5ff;

  color: #003b70;

  font-size: 28px;

  font-weight: bold;

  text-align: center;

  padding: 30px;

  border-radius: 16px;

  margin: 45px 0;
}

.languages-list {

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

  margin-bottom: 45px;
}

.languages-item {

  background: #ffcc00;

  color: #003b70;

  padding: 16px 24px;

  border-radius: 12px;

  font-size: 22px;

  font-weight: bold;
}

.languages-gift {

  background: linear-gradient(90deg, #7b2cbf, #c1121f);

  color: white;

  text-align: center;

  padding: 30px;

  border-radius: 18px;

  font-size: 28px;

  font-weight: bold;

  line-height: 1.7;
}

@media (max-width: 900px) {

  .languages-hero {

    height: 380px;
  }

  .languages-overlay h1 {

    font-size: 42px;
  }

  .languages-overlay p {

    font-size: 18px;
  }

  .languages-box {

    padding: 30px;
  }

  .languages-box p {

    font-size: 18px;
  }

  .languages-highlight {

    font-size: 22px;
  }

  .languages-gift {

    font-size: 22px;
  }
}

/* ======================================================
   PANELLADIKES PAGE
====================================================== */

.panelladikes-page {
  background: linear-gradient(to bottom, #f4f8fc, #ffffff);
  padding: 70px 40px;
}

.panelladikes-title {
  text-align: center;
  margin-bottom: 50px;
}

.panelladikes-title h1 {
  font-size: 56px;
  color: #003b70;
  margin-bottom: 20px;
}

.panelladikes-line {
  width: 140px;
  height: 5px;
  background: #c1121f;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.panelladikes-title p {
  font-size: 24px;
  color: #444;
  line-height: 1.8;
}

.bases-pdf-box {
  width: 95%;
  max-width: 1500px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.bases-pdf-box iframe {
  width: 100%;
  height: 1000px;
  border: none;
  border-radius: 15px;
}

.bases-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.bases-buttons a {
  background: #003b70;
  color: white;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: bold;
}

.bases-buttons a:hover {
  background: #c1121f;
}

.bases-pdf-box {
  width: 95%;
  max-width: 1500px;
  margin: 0 auto 70px;
  background: white;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.bases-pdf-box h2 {
  text-align: center;
  font-size: 38px;
  color: #003b70;
  margin-bottom: 25px;
}

.bases-pdf-box iframe {
  width: 100%;
  height: 1000px;
  border: none;
  border-radius: 15px;
}

/* ================================= */
/* PANELLADIKES PAGE */
/* ================================= */

.panelladikes-page {

  background: #f4f6f9;

  padding: 70px 30px;
}

/* TITLE */

.panelladikes-title {

  text-align: center;

  margin-bottom: 45px;
}

.panelladikes-title h1 {

  font-size: 58px;

  color: #003b70;

  margin-bottom: 12px;
}

.panelladikes-line {

  width: 180px;

  height: 5px;

  background: #d62828;

  margin: 0 auto 25px;

  border-radius: 10px;
}

.panelladikes-title p {

  font-size: 24px;

  color: #444;
}

/* BUTTONS */

.bases-buttons {

  display: flex;

  justify-content: center;

  gap: 25px;

  margin-bottom: 40px;

  flex-wrap: wrap;
}

.bases-buttons button {

  background: #003b70;

  color: white;

  border: none;

  padding: 18px 35px;

  border-radius: 14px;

  font-size: 22px;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

.bases-buttons button:hover {

  background: #d62828;

  transform: translateY(-3px);
}

/* PDF VIEWER */

.bases-viewer {

  width: 95%;

  max-width: 1500px;

  margin: auto;

  background: white;

  padding: 20px;

  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.bases-viewer iframe {

  width: 100%;

  height: 1000px;

  border: none;

  border-radius: 14px;
}

/* MOBILE */

@media (max-width: 900px) {

  .panelladikes-title h1 {

    font-size: 40px;
  }

  .panelladikes-title p {

    font-size: 18px;
  }

  .bases-buttons button {

    width: 100%;

    font-size: 18px;
  }

  .bases-viewer iframe {

    height: 700px;
  }
}

/* ================================= */
/* THEMATA PAGE */
/* ================================= */

.themata-page {
  background: #f4f6f9;
  padding: 70px 30px;
}

.themata-title {
  text-align: center;
  margin-bottom: 45px;
}

.themata-title h1 {
  font-size: 58px;
  color: #003b70;
  margin-bottom: 12px;
}

.themata-line {
  width: 180px;
  height: 5px;
  background: #d62828;
  margin: 0 auto 25px;
  border-radius: 10px;
}

.themata-title p {
  font-size: 24px;
  color: #444;
}

.themata-panel {
  max-width: 1300px;
  margin: 0 auto 35px;
  background: white;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  text-align: center;
}

.themata-panel h2 {
  font-size: 30px;
  color: #003b70;
  margin: 25px 0 20px;
}

.subject-buttons,
.year-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.subject-buttons button,
.year-buttons button {
  background: #003b70;
  color: white;
  border: none;
  padding: 15px 26px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.subject-buttons button:hover,
.year-buttons button:hover {
  background: #d62828;
  transform: translateY(-3px);
}

.selected-btn {
  background: #ffcc00 !important;
  color: #003b70 !important;
}

.selected-info {
  max-width: 1300px;
  margin: 0 auto 25px;
  background: #eef2f7;
  color: #003b70;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

.themata-viewer {
  width: 95%;
  max-width: 1500px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.themata-viewer iframe {
  width: 100%;
  height: 1000px;
  border: none;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .themata-title h1 {
    font-size: 38px;
  }

  .themata-title p {
    font-size: 18px;
  }

  .themata-panel {
    padding: 25px;
  }

  .subject-buttons button,
  .year-buttons button {
    width: 100%;
    font-size: 17px;
  }

  .themata-viewer iframe {
    height: 700px;
  }
}

.input-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #d6d6d6;
  border-radius: 12px;
  font-size: 18px;
  background: white;
}

.input-group span {
  color: #c1121f;
  font-size: 15px;
}

/* ================================= */
/* ACTIONS PDF PAGE */
/* ================================= */

.actions-page-new {
  background: #f4f6f9;
  padding: 70px 30px;
}

.actions-intro {
  max-width: 1150px;
  margin: 0 auto 45px;
  background: white;
  padding: 55px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  text-align: center;
}

.actions-intro h1 {
  font-size: 58px;
  color: #003b70;
  margin-bottom: 15px;
}

.actions-line {
  width: 150px;
  height: 5px;
  background: #d62828;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.actions-intro p {
  font-size: 23px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 24px;
}

.actions-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.actions-buttons button {
  background: #003b70;
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 14px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.actions-buttons button:hover {
  background: #d62828;
  transform: translateY(-3px);
}

.actions-selected {
  max-width: 1200px;
  margin: 0 auto 25px;
  background: #eef2f7;
  color: #003b70;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

.actions-viewer {
  width: 95%;
  max-width: 1500px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.actions-viewer iframe {
  width: 100%;
  height: 1000px;
  border: none;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .actions-intro {
    padding: 30px 25px;
  }

  .actions-intro h1 {
    font-size: 38px;
  }

  .actions-intro p {
    font-size: 18px;
  }

  .actions-buttons button {
    width: 100%;
    font-size: 20px;
  }

  .actions-viewer iframe {
    height: 700px;
  }
}

/* ================================= */
/* EXTRA ACTIONS */
/* ================================= */

.extra-actions {

  max-width: 1300px;

  margin: 0 auto 60px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.extra-card {

  padding: 35px;

  border-radius: 22px;

  color: white;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  transition: 0.3s;
}

.extra-card:hover {

  transform: translateY(-8px);
}

.extra-card h2 {

  font-size: 30px;

  margin-bottom: 20px;

  line-height: 1.3;
}

.extra-card p {

  font-size: 19px;

  line-height: 1.8;
}

/* COLORS */

.poetry {

  background: linear-gradient(135deg, #7b2cbf, #9d4edd);
}

.stress {

  background: linear-gradient(135deg, #00897b, #26a69a);
}

.sep {

  background: linear-gradient(135deg, #1565c0, #42a5f5);
}

/* MOBILE */

@media (max-width: 1000px) {

  .extra-actions {

    grid-template-columns: 1fr;
  }
}

/* ================================= */
/* CONTACT PAGE */
/* ================================= */

.contact-page {

  background: #f4f6f9;

  padding: 70px 30px;
}

/* TITLE */

.contact-title {

  text-align: center;

  margin-bottom: 55px;
}

.contact-title h1 {

  font-size: 60px;

  color: #003b70;

  margin-bottom: 15px;
}

.contact-line {

  width: 120px;

  height: 5px;

  background: #ffcc00;

  margin: 0 auto 25px;

  border-radius: 10px;
}

.contact-title p {

  font-size: 24px;

  color: #555;
}

/* INFO CARDS */

.contact-info {

  max-width: 1250px;

  margin: 0 auto 60px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.contact-card {

  background: white;

  padding: 40px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 8px 25px rgba(0,0,0,0.10);

  transition: 0.3s;
}

.contact-card:hover {

  transform: translateY(-8px);
}

.contact-card h2 {

  font-size: 30px;

  color: #003b70;

  margin-bottom: 20px;
}

.contact-card p {

  font-size: 21px;

  line-height: 1.8;

  color: #333;
}

/* FORM */

.contact-form-box {

  max-width: 900px;

  margin: auto;

  background: white;

  padding: 50px;

  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-form-box h2 {

  text-align: center;

  font-size: 42px;

  color: #003b70;

  margin-bottom: 35px;
}

.contact-form {

  display: flex;

  flex-direction: column;

  gap: 22px;
}

.contact-form input,
.contact-form textarea {

  width: 100%;

  padding: 18px;

  border: 2px solid #ddd;

  border-radius: 14px;

  font-size: 18px;

  font-family: Arial;
}

.contact-form input:focus,
.contact-form textarea:focus {

  outline: none;

  border-color: #003b70;
}

.contact-form button {

  background: #003b70;

  color: white;

  border: none;

  padding: 18px;

  font-size: 22px;

  font-weight: bold;

  border-radius: 14px;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {

  background: #00509d;
}

/* MOBILE */

@media (max-width: 900px) {

  .contact-info {

    grid-template-columns: 1fr;
  }

  .contact-title h1 {

    font-size: 42px;
  }

  .contact-title p {

    font-size: 19px;
  }

  .contact-form-box {

    padding: 30px 20px;
  }

  .contact-form-box h2 {

    font-size: 32px;
  }
}

/* ================================= */
/* NEO LYKEIO PAGE */
/* ================================= */

.lykeio-page {
  background: #f4f6f9;
  padding: 70px 30px;
}

.lykeio-title {
  text-align: center;
  margin-bottom: 50px;
}

.lykeio-title h1 {
  font-size: 58px;
  color: #003b70;
  margin-bottom: 15px;
}

.lykeio-line {
  width: 160px;
  height: 5px;
  background: #d62828;
  margin: 0 auto 28px;
  border-radius: 10px;
}

.lykeio-title p {
  font-size: 24px;
  color: #444;
  line-height: 1.8;
}

.lykeio-box {
  max-width: 1200px;
  margin: 0 auto 45px;
  background: white;
  padding: 50px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.lykeio-box h2 {
  font-size: 38px;
  color: #003b70;
  margin-bottom: 22px;
}

.lykeio-box p {
  font-size: 21px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.lykeio-grid {
  max-width: 1300px;
  margin: 0 auto 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.lykeio-card {
  background: white;
  padding: 38px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  border-top: 8px solid #003b70;
}

.lykeio-card h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.lykeio-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 25px;
}

.lykeio-card ul {
  margin-left: 22px;
}

.lykeio-card li {
  font-size: 20px;
  line-height: 1.9;
  color: #333;
}

.blue-card h2 { color: #1565c0; }
.green-card h2 { color: #2a9d8f; }
.red-card h2 { color: #d62828; }
.orange-card h2 { color: #e67e22; }

@media (max-width: 900px) {
  .lykeio-title h1 {
    font-size: 38px;
  }

  .lykeio-title p {
    font-size: 18px;
  }

  .lykeio-grid {
    grid-template-columns: 1fr;
  }

  .lykeio-box {
    padding: 30px 25px;
  }

  .lykeio-box h2 {
    font-size: 30px;
  }

  .lykeio-box p,
  .lykeio-card li {
    font-size: 17px;
    text-align: left;
  }
}


/* ================================= */
/* FINAL IMAGE SIZE FIXES */
/* ================================= */

/* Αρχική σελίδα - μεγάλη εικόνα */
.hero {
  width: 100%;
  background: white;
  padding: 25px 0;
  overflow: visible;
  display: flex;
  justify-content: center;
}

.hero img {
  width: 92%;
  max-width: 1500px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
}

/* Βιογραφικά - φωτογραφίες */
.bio-image {
  text-align: center;
  margin-bottom: 35px;
}

.bio-image img {
  width: 75%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
}

/* Background εικόνες */
.about-hero {
  background-size: 90% !important;
  background-repeat: no-repeat;
  background-position: center;
}


.junior-page {
  background-size: 90% !important;
  background-repeat: no-repeat;
  background-position: center;
}

.voice-page {
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center top;
}

/* Mobile */
@media (max-width: 900px) {
  .hero img {
    width: 100%;
    border-radius: 0;
  }

  .bio-image img {
    width: 95%;
    max-width: 420px;
  }

  .about-hero,
  .languages-hero,
  .junior-page {
    background-size: cover !important;
  }
}