@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #333;
}
header {
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
}
nav {
    background: #34495e;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    transition: background 0.3s;
}
nav a:hover {
    background: #1abc9c;
}
.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 15px;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}
.org-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.org-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.org-card h2 {
    margin-top: 0;
    color: #2c3e50;
}
.org-card p {
    font-size: 14px;
    line-height: 1.5;
}
.btn {
    display: inline-block;
    margin: 6px 4px 0 0;
    padding: 8px 12px;
    background: #1abc9c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}
.btn:hover {
    background: #16a085;
}
.more-info {
    background: #e74c3c;
}
footer {
    text-align: center;
    padding: 15px;
    background: #2c3e50;
    color: #fff;
    margin-top: 30px;
}
