* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header .tagline {
    font-size: 1.2em;
    font-style: italic;
    opacity: 0.9;
}

.content {
    background: white;
    margin: 30px auto;
    padding: 40px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c5282;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2c5282;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #1a365d;
}

.btn-secondary {
    background: #718096;
}

.btn-secondary:hover {
    background: #4a5568;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.alert-error {
    background: #fed7d7;
    color: #c53030;
    border: 1px solid #fc8181;
}

.alert-info {
    background: #bee3f8;
    color: #2c5282;
    border: 1px solid #90cdf4;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.branch-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.branch-item:hover {
    transform: translateY(-5px);
}

.branch-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.branch-item h3 {
    color: #2c5282;
    font-size: 1.1em;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    border-top: 1px solid #ddd;
    margin-top: 50px;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9em;
}

.nav-links {
    margin-top: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.1em;
}

.nav-links a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dashboard-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-card h3 {
    color: #2c5282;
    margin-bottom: 15px;
}

.veteran-list {
    list-style: none;
}

.veteran-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.veteran-list li:last-child {
    border-bottom: none;
}

.veteran-list a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
}

.veteran-list a:hover {
    text-decoration: underline;
}