.dosen-container{
max-width:1100px;
margin:auto;
padding:30px 20px;
font-family:Arial, sans-serif;
}

.dosen-header{
margin-bottom:40px;
}

.dosen-header h1{
font-size:32px;
color:#0d6efd;
margin-bottom:15px;
}

.dosen-header p{
font-size:16px;
line-height:1.7;
color:#444;
}

.dosen-item{
display:flex;
gap:25px;
background:#fff;
padding:20px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.dosen-foto img{
width:120px;
height:160px;
object-fit:cover;
border-radius:6px;
border:3px solid #0d6efd;
}

.dosen-info h3{
margin-top:0;
color:#0d6efd;
}

.dosen-info p{
margin:4px 0;
font-size:14px;
}

.dosen-info span{
font-weight:bold;
}

@media(max-width:768px){

.dosen-item{
flex-direction:column;
text-align:center;
}

}

.dosen-wrapper{
max-width:1000px;
margin:auto;
font-family:Arial, sans-serif;
}

.judul-dosen{
text-align:center;
font-size:32px;
margin-bottom:10px;
}

.deskripsi-dosen{
text-align:center;
max-width:800px;
margin:auto;
margin-bottom:40px;
line-height:1.7;
color:#555;
}


.dosen-wrapper{
max-width:1000px;
margin:auto;
font-family:Arial, sans-serif;
}

.judul-dosen{
text-align:center;
font-size:32px;
margin-bottom:10px;
}

.deskripsi-dosen{
text-align:center;
max-width:800px;
margin:auto;
margin-bottom:40px;
line-height:1.7;
color:#555;
}

/* CARD DOSEN */

.dosen-item{
display:flex;
gap:25px;
margin-bottom:30px;
padding:20px;
border-radius:12px;
background:#f9f9f9;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

/* efek hover card */

.dosen-item:hover{
transform:translateY(-8px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
background:white;
}


/* FOTO */

.foto{
width:150px;
height:200px;
overflow:hidden;
border-radius:6px;
transition:all 0.4s ease;
}

.foto img{
width:100%;
height:100%;
object-fit:cover;
transition:all 0.4s ease;
}


/* FOTO MENJADI LINGKARAN */

.dosen-item:hover .foto{
border-radius:50%;
width:160px;
height:160px;
}

.dosen-item:hover .foto img{
transform:scale(1.1);
}


/* INFO */

.info h3{
margin-top:0;
color:#003366;
transition:color 0.3s;
}

.dosen-item:hover .info h3{
color:#0073e6;
}

.info p{
margin:4px 0;
}


/* RESPONSIVE */

@media(max-width:768px){

.dosen-item{
flex-direction:column;
align-items:center;
text-align:center;
}

.foto{
width:120px;
height:160px;
}

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
  color: #333;
  line-height: 1.6;
  padding: 40px 20px;
}

.calendar-section {
  max-width: 1200px;
  margin: 0 auto;
}

.calendar-header {
  text-align: center;
  margin-bottom: 50px;
}

.calendar-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.calendar-desc {
  font-size: 1.15rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.calendar-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.calendar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.calendar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #004aad, #1e88e5);
}

.calendar-card h3 {
  background: linear-gradient(90deg, #004aad, #1e88e5);
  color: white;
  padding: 20px 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.calendar-list {
  list-style: none;
  padding: 24px;
}

.calendar-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #444;
}

.calendar-list li::before {
  content: "📅";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.4rem;
}

.calendar-list li strong {
  color: #004aad;
  font-weight: 600;
}

.download-section {
  text-align: center;
}

.download-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(90deg, #004aad, #1e88e5);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.25);
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 74, 173, 0.35);
  background: linear-gradient(90deg, #1e88e5, #004aad);
}

.download-btn:active {
  transform: translateY(-2px);
}

/* Responsif */
@media (max-width: 768px) {
  .calendar-title {
    font-size: 2.2rem;
  }
  
  .calendar-grid {
    grid-template-columns: 1fr;
  }
  
  .calendar-card h3 {
    font-size: 1.35rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f9ff 0%, #e8f0ff 100%);
  color: #333;
  line-height: 1.7;
  padding: 60px 20px;
}

.pedoman-section {
  max-width: 1100px;
  margin: 0 auto;
}

.pedoman-header {
  text-align: center;
  margin-bottom: 60px;
}

.icon-container {
  margin-bottom: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f9ff 0%, #e8f0ff 100%);
  color: #333;
  line-height: 1.7;
  padding: 60px 20px;
}

.pkm-section {
  max-width: 1200px;
  margin: 0 auto;
}

.pkm-header {
  text-align: center;
  margin-bottom: 60px;
}

.pkm-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 8px;
}

.pkm-subtitle {
  font-size: 1.4rem;
  color: #1e88e5;
  font-weight: 500;
}

.pkm-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.intro-card, .table-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.08);
  transition: all 0.35s ease;
}

.intro-card:hover, .table-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.intro-card h2, .table-card h2 {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 20px;
  font-weight: 600;
}

.intro-card p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
}

.table-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 24px;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
}

.pkm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pkm-table th, .pkm-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.pkm-table th {
  background: linear-gradient(90deg, #004aad, #1e88e5);
  color: white;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1;
}

.pkm-table tr:nth-child(even) {
  background-color: #f8fcff;
}

.pkm-table tr:hover {
  background-color: #e6f2ff;
}

/* Responsif */
@media (max-width: 992px) {
  .pkm-table th, .pkm-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .pkm-title {
    font-size: 2.2rem;
  }
  
  .pkm-table thead {
    display: none;
  }
  
  .pkm-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
  }
  
  .pkm-table td {
    display: block;
    text-align: right;
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #eee;
  }
  
  .pkm-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    font-weight: bold;
    text-align: left;
    color: #004aad;
  }
  
  .pkm-table td:last-child {
    border-bottom: none;
  }
}

.document-icon {
  font-size: 5rem;
  background: linear-gradient(135deg, #004aad, #1e88e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pedoman-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.pedoman-subtitle {
  font-size: 1.4rem;
  color: #1e88e5;
  font-weight: 500;
}

.pedoman-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

.info-card, .download-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.info-card:hover, .download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.info-card::before, .download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #004aad, #1e88e5);
}

.info-card h2, .download-card h3 {
  font-size: 1.6rem;
  color: #004aad;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-card p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #444;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e88e5;
  font-weight: bold;
  font-size: 1.3rem;
  top: -2px;
}

.download-card {
  grid-column: 1 / -1; /* Membuat card download memenuhi lebar penuh */
  text-align: center;
  background: linear-gradient(135deg, #004aad 0%, #1e88e5 100%);
  color: white;
}

.download-card h3 {
  color: white;
}

.download-card p {
  color: #e0f0ff;
  margin-bottom: 24px;
}

.download-btn {
  display: inline-block;
  padding: 16px 48px;
  background: white;
  color: #004aad;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: #f0f8ff;
}

.note {
  font-size: 0.95rem;
  color: #d0e0ff;
  opacity: 0.9;
}

/* Responsif */
@media (max-width: 768px) {
  .pedoman-title {
    font-size: 2.2rem;
  }
  
  .pedoman-content {
    grid-template-columns: 1fr;
  }
  
  .document-icon {
    font-size: 4rem;
  }
}
/* ===========================
LAYANAN MAHASISWA
=========================== */

.layanan-section{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.layanan-header{
text-align:center;
margin-bottom:50px;
}

.layanan-title{
font-size:2.8rem;
font-weight:700;
color:#004aad;
margin-bottom:10px;
}

.layanan-desc{
max-width:800px;
margin:auto;
font-size:1.1rem;
color:#555;
line-height:1.8;
}


/* GRID LAYOUT */

.layanan-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:30px;
}


/* CARD */

.layanan-card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,74,173,0.08);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}


/* garis atas card */

.layanan-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#004aad,#1e88e5);
}


/* efek hover */

.layanan-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,74,173,0.15);
}


/* text */

.layanan-card h3{
font-size:1.5rem;
color:#004aad;
margin-bottom:15px;
}

.layanan-card p{
font-size:1rem;
color:#444;
line-height:1.7;
margin-bottom:10px;
}

.layanan-card ul{
padding-left:20px;
margin-bottom:10px;
}

.layanan-card li{
margin-bottom:6px;
}

.layanan-card a{
color:#1e88e5;
text-decoration:none;
font-weight:500;
}

.layanan-card a:hover{
text-decoration:underline;
}


/* RESPONSIVE */

@media(max-width:768px){

.layanan-title{
font-size:2.2rem;
}

.layanan-grid{
grid-template-columns:1fr;
}

}
/* ===========================
PROFIL PROGRAM STUDI
=========================== */

.profil-section{
max-width:1000px;
margin:auto;
padding:60px 20px;
}

.profil-header{
text-align:center;
margin-bottom:50px;
}

.profil-title{
font-size:2.8rem;
font-weight:700;
color:#004aad;
margin-bottom:8px;
}

.profil-subtitle{
font-size:1.4rem;
color:#1e88e5;
font-weight:500;
}

.profil-content{
display:grid;
grid-template-columns:1fr;
gap:30px;
}

.profil-card{
background:white;
padding:32px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,74,173,0.08);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

.profil-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#004aad,#1e88e5);
}

.profil-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,74,173,0.15);
}

.profil-card p{
font-size:1.05rem;
color:#444;
line-height:1.8;
margin-bottom:16px;
}

.profil-card p:last-child{
margin-bottom:0;
}


/* RESPONSIVE */

@media(max-width:768px){

.profil-title{
font-size:2.2rem;
}
/* ===========================
VMTS
=========================== */

.vmts-section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.vmts-header{
text-align:center;
margin-bottom:50px;
}

.vmts-title{
font-size:2.8rem;
font-weight:700;
color:#004aad;
margin-bottom:10px;
}

.vmts-subtitle{
font-size:1.4rem;
color:#1e88e5;
font-weight:500;
}

.vmts-content{
display:grid;
grid-template-columns:1fr;
gap:30px;
}


/* CARD */

.vmts-card{
background:white;
border-radius:16px;
padding:32px;
box-shadow:0 10px 30px rgba(0,74,173,0.08);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

.vmts-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#004aad,#1e88e5);
}

.vmts-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,74,173,0.15);
}

.vmts-card h2{
font-size:1.8rem;
color:#004aad;
margin-bottom:15px;
}

.vmts-card h3{
color:#1e88e5;
margin-top:20px;
margin-bottom:10px;
}

.vmts-card p{
font-size:1.05rem;
color:#444;
line-height:1.7;
}

.vmts-card ul{
padding-left:20px;
margin-bottom:10px;
}

.vmts-card li{
margin-bottom:6px;
line-height:1.6;
}


/* RESPONSIVE */

@media(max-width:768px){

.vmts-title{
font-size:2.2rem;
}

}
/* ===========================
UNIT KEGIATAN MAHASISWA
=========================== */

.ukm-section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.ukm-header{
text-align:center;
margin-bottom:50px;
}

.ukm-title{
font-size:2.8rem;
font-weight:700;
color:#004aad;
margin-bottom:15px;
}

.ukm-desc{
max-width:850px;
margin:auto;
font-size:1.1rem;
color:#555;
line-height:1.8;
margin-bottom:10px;
}


/* GRID */

.ukm-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:30px;
}


/* CARD */

.ukm-card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,74,173,0.08);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}


/* garis atas */

.ukm-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#004aad,#1e88e5);
}


/* hover */

.ukm-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,74,173,0.15);
}


.ukm-card h3{
font-size:1.5rem;
color:#004aad;
margin-bottom:12px;
}

.ukm-card p{
font-size:1rem;
color:#444;
line-height:1.7;
margin-bottom:10px;
}

.ukm-card p:last-child{
margin-bottom:0;
}


/* RESPONSIVE */

@media(max-width:768px){

.ukm-title{
font-size:2.2rem;
}

.ukm-grid{
grid-template-columns:1fr;
}

}
/* ===========================
TATA PAMONG
=========================== */

.tatapamong-section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.tatapamong-header{
text-align:center;
margin-bottom:50px;
}

.tatapamong-title{
font-size:2.8rem;
font-weight:700;
color:#004aad;
margin-bottom:15px;
}

.tatapamong-desc{
max-width:850px;
margin:auto;
font-size:1.1rem;
color:#555;
line-height:1.8;
margin-bottom:10px;
}


/* GRID */

.tatapamong-content{
display:grid;
grid-template-columns:1fr;
gap:30px;
}


/* CARD */

.tatapamong-card{
background:white;
padding:32px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,74,173,0.08);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

.tatapamong-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#004aad,#1e88e5);
}

.tatapamong-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,74,173,0.15);
}

.tatapamong-card h2{
font-size:1.6rem;
color:#004aad;
margin-bottom:15px;
}

.tatapamong-card p{
font-size:1rem;
color:#444;
line-height:1.7;
margin-bottom:15px;
}


/* IMAGE */

.tatapamong-image{
text-align:center;
margin-top:20px;
}

.tatapamong-image img{
max-width:100%;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}


/* BUTTON */

.tatapamong-btn{
display:inline-block;
padding:14px 30px;
background:linear-gradient(90deg,#004aad,#1e88e5);
color:white;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:all 0.3s ease;
}

.tatapamong-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,74,173,0.3);
}


/* RESPONSIVE */

@media(max-width:768px){

.tatapamong-title{
font-size:2.2rem;
}

}
/* ===========================
PRESTASI MAHASISWA INTRO
=========================== */

.prestasi-intro-section{
max-width:1000px;
margin:auto;
padding:60px 20px;
}

.prestasi-intro-card{
background:white;
padding:35px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,74,173,0.08);
position:relative;
overflow:hidden;
line-height:1.8;
color:#444;
}

/* garis gradient atas */

.prestasi-intro-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#004aad,#1e88e5);
}

.prestasi-intro-title{
text-align:center;
font-size:2.6rem;
font-weight:700;
color:#004aad;
margin-bottom:25px;
}

.prestasi-intro-card p{
margin-bottom:18px;
font-size:1.05rem;
}

/* DOWNLOAD BOX */

.prestasi-download-box{
text-align:center;
margin:25px 0;
}

/* BUTTON */

.prestasi-download-btn{
display:inline-block;
padding:14px 35px;
background:linear-gradient(90deg,#004aad,#1e88e5);
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:all 0.3s ease;
box-shadow:0 8px 20px rgba(0,74,173,0.2);
}

.prestasi-download-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,74,173,0.35);
background:linear-gradient(90deg,#1e88e5,#004aad);
}

/* RESPONSIVE */

@media(max-width:768px){

.prestasi-intro-title{
font-size:2rem;
}

}
/* ===========================
SOP DAN RUBRIK PENILAIAN
=========================== */

.sop-section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

.sop-header{
text-align:center;
margin-bottom:40px;
}

.sop-title{
font-size:2.8rem;
color:#004aad;
margin-bottom:10px;
}

.sop-desc{
max-width:750px;
margin:auto;
font-size:1.05rem;
line-height:1.7;
color:#555;
}


/* GRID */

.sop-content{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:30px;
}


/* CARD */

.sop-card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,74,173,0.08);
position:relative;
transition:all 0.3s ease;
}

.sop-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#004aad,#1e88e5);
}

.sop-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,74,173,0.15);
}

.sop-card h2{
color:#004aad;
margin-bottom:10px;
}

.sop-card p{
color:#444;
line-height:1.7;
margin-bottom:20px;
}


/* DOWNLOAD BUTTON */

.download-btn{
display:inline-block;
padding:12px 28px;
background:linear-gradient(90deg,#004aad,#1e88e5);
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:all 0.3s ease;
}

.download-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,74,173,0.35);
}


/* RESPONSIVE */

@media(max-width:768px){

.sop-title{
font-size:2rem;
}

/* SECTION */

.curriculum-section{
    background:#f5f7fb;
    padding:80px 20px;
    font-family:"Segoe UI", Arial, sans-serif;
}


/* CONTAINER */

.curriculum-container{
    max-width:1000px;
    margin:auto;
    background:#ffffff;
    padding:60px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}


/* HEADER */

.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h1{
    font-size:34px;
    color:#0b3d91;
    font-weight:700;
    margin-bottom:10px;
}

.line{
    width:70px;
    height:4px;
    background:#0b3d91;
    margin:20px auto;
    border-radius:10px;
}


/* CONTENT */

.curriculum-content h2{
    margin-top:35px;
    font-size:24px;
    color:#0b3d91;
    font-weight:600;
}

.curriculum-content p{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-top:15px;
    text-align:justify;
}


/* LIST MATA KULIAH */

.course-highlight{
    margin-top:20px;
    padding-left:20px;
}

.course-highlight li{
    margin-bottom:10px;
    font-size:16px;
    color:#333;
    position:relative;
}

.course-highlight li::marker{
    color:#0b3d91;
}


/* DOWNLOAD SECTION */

.download-section{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #eee;
}

.download-section h2{
    font-size:24px;
    color:#0b3d91;
}


/* DOWNLOAD LIST */

.download-list{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.download-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px;
    background:#f1f4fb;
    border-radius:6px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.download-item span{
    color:#0b3d91;
    font-weight:600;
}

.download-item:hover{
    background:#0b3d91;
    color:white;
}

.download-item:hover span{
    color:white;
}


/* RESPONSIVE */

@media(max-width:768px){

.curriculum-container{
    padding:35px 25px;
}

.section-header h1{
    font-size:26px;
}

.curriculum-content p{
    font-size:16px;
}

}}