/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    color: #000;
}

/* Header */
header {
    background-color: #f0f0f0;
    border-bottom: 2px solid #000;
    padding: 20px;
}

header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

header p {
    font-size: 14px;
    color: #666;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Footer */
footer {
    margin-top: 40px;
    padding: 20px;
    border-top: 2px solid #000;
    background-color: #f0f0f0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer nav {
    text-align: center;
}

footer a {
    color: #000;
    text-decoration: underline;
    margin: 0 10px;
}

footer a:hover {
    background-color: #ffffcc;
}

/* Page Specific Styles */
.page-content {
    margin-top: 20px;
    padding: 30px;
    border: 2px solid #000;
    background-color: #fff;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    background-color: #333;
}

.empty-content {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/* Founder Page Styles */
.founder-info {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #000;
}

.founder-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.founder-email {
    font-size: 16px;
    margin-top: 10px;
}

.founder-email a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

.founder-email a:hover {
    background-color: #ffffcc;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

.links-section {
    margin-top: 30px;
}

.link-item {
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #000;
    background-color: #fff;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: background-color 0.2s;
}

.link-item:hover {
    background-color: #ffffcc;
}