@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  background: none;
}

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

.header {
  width: 100%;
  padding: 20px 0;
}
.header .header__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header__logo img {
  height: 55px;
  width: auto;
  display: block;
}

.hero-college {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../assets/img/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-college .hero-college__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-college .hero-college__content {
  position: relative;
  margin-left: auto;
  color: #fff;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-college .hero-college__content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 550px;
}
.hero-college .hero-college__content p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.college-section {
  padding: 80px 0;
}
.college-section__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.college-section .tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}
.college-section h2 {
  font-size: 32px;
  margin-bottom: 18px;
}
.college-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.college-section h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.college-section ul {
  list-style: none;
}
.college-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.college-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f4b8f;
  font-size: 18px;
  line-height: 1;
}

/* INDIVIDUAL BLOCK EXTRA (если нужно чуть подчеркнуть) */
.college-individual {
  background: #f7f8fb;
  border-top: 1px solid #e3e6f0;
  border-bottom: 1px solid #e3e6f0;
}

.college-individual {
  background: #f7f8fb;
}

.college-section__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
}

/* MINI FEATURES */
.mini-features {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.mini-features .mini-feature {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7ee;
}
.mini-features .mini-feature i {
  font-size: 20px;
  color: #1f4b8f;
  margin-bottom: 8px;
}
.mini-features .mini-feature p {
  font-size: 14px;
  margin: 0;
  color: #333;
}

/* IMAGE RIGHT */
.right-image {
  margin-top: 25px;
}
.right-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* ============================
   GLOBAL ELEMENTS
============================ */
.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 600;
}

.section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* ============================
   KEY SERVICES
============================ */
.college-services {
  padding: 80px 0;
  background: #fafafa;
}
.college-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 992px) {
  .college-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .college-services .services-grid {
    grid-template-columns: 1fr;
  }
}
.college-services .service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.college-services .service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}
.college-services .service-card p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}
.college-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* ============================
   STEP-BY-STEP PROCESS
============================ */
.college-process {
  padding: 80px 0;
  background: #ffffff;
}
.college-process .process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.college-process .process-steps .process-step {
  padding: 25px 30px;
  border-left: 4px solid #2f4d80;
  margin-bottom: 25px;
  background: #f8f9fb;
  border-radius: 8px;
  transition: 0.3s ease;
}
.college-process .process-steps .process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 600;
}
.college-process .process-steps .process-step p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
.college-process .process-steps .process-step:hover {
  background: #eef2f7;
}

/* ============================
   FAQ
============================ */
.college-faq {
  padding: 80px 0;
  background: #fafafa;
}
.college-faq .faq-list {
  max-width: 850px;
  margin: 0 auto;
}
.college-faq .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.college-faq .faq-item:last-child {
  border-bottom: none;
}
.college-faq .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s ease;
}
.college-faq .faq-question .faq-toggle {
  font-size: 24px;
  color: #555;
  transition: 0.3s ease;
}
.college-faq .faq-question:hover {
  color: #2f4d80;
}
.college-faq .faq-question:hover .faq-toggle {
  color: #2f4d80;
}
.college-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding-right: 20px;
}
.college-faq .faq-answer p {
  margin-top: 15px;
  line-height: 1.6;
  color: #555;
  font-size: 16px;
}
.college-faq .faq-item.active .faq-question {
  color: #2f4d80;
}
.college-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #2f4d80;
}
.college-faq .faq-item.active .faq-answer {
  max-height: 300px;
}

.college-footer {
  padding: 60px 0;
  background: #f4f4f4;
  border-top: 1px solid #ddd;
  text-align: center;
}
.college-footer .footer-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 25px;
  opacity: 0.9;
  transition: 0.3s ease;
}
.college-footer .footer-logo img:hover {
  opacity: 1;
  transform: scale(1.02);
}
.college-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 25px;
}
.college-footer .footer-links a {
  font-size: 17px;
  color: #2f4d80;
  text-decoration: none;
  transition: 0.3s ease;
}
.college-footer .footer-links a:hover {
  color: #1a1a1a;
}
@media (max-width: 480px) {
  .college-footer .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
.college-footer .footer-copy {
  font-size: 15px;
  color: #777;
}

.policy-page {
  padding: 80px 0;
  background: #ffffff;
}
.policy-page h1 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}
.policy-page h2 {
  font-size: 26px;
  color: #2f4d80;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}
.policy-page p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 17px;
}
.policy-page ul {
  margin-bottom: 25px;
  padding-left: 25px;
}
.policy-page ul li {
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 17px;
}
.policy-page ul li strong {
  color: #1a1a1a;
}

@media (max-width: 1100px) {
  .college-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .mini-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .plan-card h3 {
    font-size: 18px;
  }
}
/* ----------- Tablets ----------- */
@media (max-width: 900px) {
  .college-section {
    padding: 60px 0;
  }
  .college-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Текст сверху, картинка и список — ниже */
  .college-section__text {
    order: 1;
  }
  .college-section__list,
  .college-plans__grid {
    order: 2;
  }
  .mini-features {
    grid-template-columns: repeat(3, 1fr);
  }
  .right-image img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }
}
/* ----------- Large Phones ----------- */
@media (max-width: 768px) {
  h2 {
    font-size: 26px !important;
  }
  h3 {
    font-size: 18px !important;
  }
  .college-section p,
  .college-section ul li {
    font-size: 15px !important;
  }
  .mini-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .plan-card {
    padding: 18px 15px;
  }
  .plan-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
/* ----------- Small Phones ----------- */
@media (max-width: 520px) {
  .tag {
    font-size: 10px;
    padding: 5px 10px;
  }
  .college-section {
    padding: 50px 0;
  }
  /* Блок “Individualized Learning” */
  .mini-features {
    grid-template-columns: 1fr;
  }
  /* Картинка 100% ширины */
  .right-image img {
    width: 100%;
    border-radius: 12px;
  }
  /* Блок “Graduation Plans” */
  .college-plans__grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .plan-card {
    padding: 16px;
  }
  .plan-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ----------- Extra-Small Screens ----------- */
@media (max-width: 390px) {
  h2 {
    font-size: 22px !important;
  }
  .mini-feature p {
    font-size: 13px;
  }
  .mini-feature i {
    font-size: 18px;
  }
  .plan-card {
    padding: 14px;
    border-radius: 10px;
  }
}/*# sourceMappingURL=style.css.map */