/* Basic reset and font setup */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* You can replace this with your project's font */
    color: #333;
}

.accordion-container {
    max-width: 1200px; /* Adjust width as needed */
    margin: 40px auto;
}

.accordion-content {
    padding: 20px;
}
ul {
    padding-left: 20px;
    line-height: 2;
}
h4 {
    margin-bottom: 10px;
}

h2 {
    font-weight: normal;
    color: #1a252f;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Dropdown Container */
.custom-dropdown {
    margin-bottom: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* The Clickable Header */
.custom-dropdown summary {
    background-color: #f39c12; /* The orange color */
    color: white;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Removes default arrow in Firefox */
    display: flex;
    align-items: center;
}

/* Removes default arrow in Chrome/Safari */
.custom-dropdown summary::-webkit-details-marker {
    display: none; 
}

/* Custom Animated Arrow */
.custom-dropdown summary .arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
    margin-right: 15px;
    transition: transform 0.3s ease;
}

/* Arrow points up when dropdown is open */
.custom-dropdown[open] summary .arrow {
    transform: rotate(135deg);
    /* margin-top: 6px; */
}

/* The Content Inside */
.dropdown-content-admission {
    padding: 25px;
    background-color: #ffffff;
}

.dropdown-content-admission h4 {
    color: #2980b9; /* The blue text color for subheadings */
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.dropdown-content-admission h4:first-child {
    margin-top: 0;
}

.dropdown-content-admission ul {
    padding-left: 20px;
    color: #555;
    line-height: 1.8;
}

.dropdown-content-admission p {
    color: #555;
    margin-bottom: 0;
    /* text-indent: 20px; */
}

.dropdown-content-admission a {
    color: #2c3e50;
    font-weight: bold;
    text-decoration: none;
}

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

.condition {
    text-indent: 20px;
}

.page-title {
    font-family: 'Sarabun', sans-serif;
}