.page-title {
    text-align: center;
    margin-bottom: 30px;
}

.hackathon {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

.hackathon:last-child {
    border-bottom: none;
}.partner-logos {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 5px;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.partner-logo {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
}

.full-cdt-name {
    font-size: 0.9rem;
    margin-top: 30px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    text-align: center;
    line-height: 1.4;
}/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Kanit:wght@300;400;500&display=swap');

body {
    font-family: 'Kanit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
}

header {
    background-color: rgba(24,37,66,255);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', 'Georgia', serif;
    color: rgba(24,37,66,255);
}

a {
    color: rgba(67,182,150,255);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pinned-resources {
    background-color: #f8f8f8;
    padding: 15px;
    border-left: 5px solid rgba(67,182,150,255);
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.pinned-resources h2 {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.pinned-resources h2:before, .pinned-resources h2:after {
    content: "📌";
    margin: 0 10px;
}

.resource-link {
    display: block;
    margin: 10px 0;
    padding: 5px;
}

.hackathons {
    margin-top: 30px;
}

.team {
    background-color: #f0f7f4;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 5px;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}

.nav {
    margin: 20px 0;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.nav a {
    margin: 0 15px;
    font-weight: bold;
}

.logo {
    max-height: 80px;
    margin-bottom: 15px;
}

.site-purpose {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 5px solid rgba(24,37,66,255);
}