/* =====================
   Global Styles
===================== */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #222;
    border: 2px solid #f4c430;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
}

.section {
    padding: 60px 0;
}

/* =====================
   Hero Section
===================== */
.hero-section {
    background:bisque;
    color: #222;
    border: 2px solid #f4c430;
    text-align: center;
    padding: 90px 20px;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    color: #f4c430;
}

.hero-section .lead {
    font-size: 18px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-accent {
    background: linear-gradient(135deg, #f4c430, #ffb703);
    color: #000;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* =====================
   About Section
===================== */
.about-course {
    background: #ffffff;
    border-left: 8px solid #f4c430;
}

.about-course p {
    font-size: 16px;
    line-height: 1.8;
}

/* =====================
   Annual Planner
===================== */
.planner {
    background: linear-gradient(135deg, #ffffff, #f2f2f2);
}

.exam-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.exam-table th {
    background: #000000;
    color: #f4c430;
    padding: 12px;
}

.exam-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.exam-table tr:hover {
    background: #fff3c4;
}

/* =====================
   Exams Covered
===================== */
.exams-covered {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: #ffffff;
}

.exams-covered ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.exams-covered li {
    background: rgba(255,255,255,0.12);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    font-weight: bold;
    color: #f4c430;
}

/* =====================
   Selection Process
===================== */
.selection-process {
    background: #ffffff;
}

.process-block {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 6px solid #f4c430;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* =====================
   Why Choose Us
===================== */
.why-choose {
    background: linear-gradient(135deg, #f4c430, #ffb703);
}

.why-choose h2 {
    color: #000;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.benefits-list li {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =====================
   FAQs
===================== */
.faqs {
    background: #ffffff;
}

.faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 5px solid #f4c430;
}



/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .exams-covered ul {
        flex-direction: column;
    }
}



/* Back to Courses Button */
.back-btn {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  font-size: 20px;
  border: 2px solid #f4c430; /* gold */
  color: #161001;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #f4c430;
  color: #000;
}
