body{
    margin:0;
    padding:0;
    background:#eef2f7;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
}

header{
    background:#2d4f91;
    color:#fff;
    padding:30px;
    text-align:center;
}

header h1{
    margin:0;
    font-size:42px;
}

header p{
    margin-top:10px;
    font-size:18px;
}

nav{
    background:#1f3564;
    text-align:center;
    padding:12px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 12px;
    font-weight:bold;
    padding:8px 14px;
    border-radius:6px;
    transition:
        background .2s ease,
        color .2s ease;
}

nav a:hover{
    background:#2d4f91;
}

.container{
    width:90%;
    max-width:1000px;
    margin:40px auto;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    margin-bottom:30px;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.16);
}

.business-card,
.business-item-card,
.business-mission-card,
.item-card,
.mission-card{
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.business-card:hover,
.business-item-card:hover,
.business-mission-card:hover,
.item-card:hover,
.mission-card:hover{
    transform:translateY(-4px);
    border-color:#2d4f91;
    box-shadow:0 10px 24px rgba(31,53,100,.18);
}

label{
    display:block;
    margin-top:18px;
    font-weight:bold;
}

input{
    width:100%;
    padding:12px;
    margin-top:6px;
    box-sizing:border-box;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:16px;
}

input:focus{
    outline:none;
    border-color:#2d4f91;
    box-shadow:0 0 5px rgba(45,79,145,.3);
}

.alert{
    padding:12px;
    border-radius:6px;
    margin-bottom:20px;
    text-align:center;
    font-weight:bold;
}

.alert-success{
    background:#d6ffd9;
    color:#006b14;
    border:1px solid #8bd48f;
}

.alert-error{
    background:#ffd6d6;
    color:#8a0000;
    border:1px solid #d88;
}

.small-links{
    text-align:center;
    margin-top:20px;
}

.small-links a{
    color:#2d4f91;
    text-decoration:none;
    font-weight:bold;
}

.small-links a:hover{
    text-decoration:underline;
}

.checkbox-row{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin-top:20px;
}

.checkbox-row input{
    width:auto;
    margin-top:3px;
}

.checkbox-row label{
    margin-top:0;
    font-weight:normal;
}

h2{
    color:#2d4f91;
}

.button{
    display:inline-block;
    background:#2d4f91;
    color:white;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    margin-top:20px;
    border:none;
    cursor:pointer;
    font-size:16px;
    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.button:hover{
    background:#1f3564;
    transform:translateY(-2px);
    box-shadow:0 5px 12px rgba(31,53,100,.22);
}

.button:active{
    transform:translateY(0);
    box-shadow:none;
}

footer{
    margin-top:50px;
    padding:25px;
    text-align:center;
    color:#777;
    font-size:.9em;
}

@media (prefers-reduced-motion:reduce){

    .card,
    .business-card,
    .business-item-card,
    .business-mission-card,
    .item-card,
    .mission-card,
    .button,
    nav a{
        transition:none;
    }

    .card:hover,
    .business-card:hover,
    .business-item-card:hover,
    .business-mission-card:hover,
    .item-card:hover,
    .mission-card:hover,
    .button:hover{
        transform:none;
    }

}