.garnet-btn {
    display: inline-block;
    background: #8B2332;
    color: #fff;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(139,35,50,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin: 1rem 0;
    cursor: pointer;
}
.garnet-btn:hover {
    background: #a63a4b;
    box-shadow: 0 4px 16px rgba(139,35,50,0.18);
    transform: translateY(-2px) scale(1.03);
}
.tool-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(60,80,180,0.08);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
}
.features-section {
    margin-bottom: 2.5rem;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features-list li {
    background: #f8faff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(60,80,180,0.05);
    margin-bottom: 1.2rem;
    padding: 1rem 1.2rem;
    font-size: 1.08rem;
    color: #222;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.features-list .icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.primary-btn {
    display: inline-block;
    background: #7a9c6e;
    color: #fff;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(120,150,120,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin: 1rem 0;
    cursor: pointer;
}
.primary-btn:hover {
    background: #b7c9a3;
    box-shadow: 0 4px 16px rgba(120,150,120,0.18);
    transform: translateY(-2px) scale(1.03);
}
.scriptguide-btn {
    /* Keep primary-btn layout but use ScriptGuide brand color */
    background: #557c99;
    color: #fff;
    box-shadow: 0 2px 8px rgba(85,124,153,0.10);
}
.scriptguide-btn:hover {
    background: #6b91ad;
    box-shadow: 0 4px 16px rgba(85,124,153,0.18);
    transform: translateY(-2px) scale(1.03);
}
.tool-link {
    display: block;
    width: fit-content;
    margin: 0 auto;
    border-radius: 50%;
    transition: box-shadow 0.2s;
}
.tool-link:hover .tool-logo {
    box-shadow: 0 6px 20px rgba(60,80,180,0.22);
    border-color: #6c7bbd;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
html, body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff !important;
    color: #111;
}
header {
    background: #222;
    color: #fff;
    padding-bottom: 0.5rem;
    text-align: center;
}
/* Banner styles */
.banner {
    width: 100%;
    background: linear-gradient(90deg, #222 0%, #444 100%);
    margin-bottom: 0.5rem;
    padding: 2rem 0 1rem 0;
    text-align: center;
}
/* Banner image styles */
.banner-img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
nav {
    margin-top: 0.5rem;
}
nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s;
}
nav a:hover {
    background: #555;
    text-decoration: underline;
}
main {
    max-width: 900px;
    margin: 2rem auto 4rem auto;
    padding: 1rem;
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header {
    background: #222;
    color: #fff;
    padding-bottom: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.banner {
    width: 100%;
    background: linear-gradient(90deg, #222 0%, #444 100%);
    margin-bottom: 0.5rem;
    padding: 1rem 0 0.5rem 0;
    text-align: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.banner-img {
    width: 100%;
    max-height: 110px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
nav {
    margin-top: 0.5rem;
}
nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
nav a:hover {
    background: #fff;
    color: #222;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
main {
    max-width: 1000px;
    margin: 2rem auto 7rem auto;
    padding: 2rem 1rem 2rem 1rem;
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    min-height: 60vh;
}
.mission {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    color: #444;
}
.columns {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.column {
    flex: 1;
    background: #f8faff;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(60,80,180,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    min-width: 220px;
    max-width: 400px;
}
.column:hover {
    box-shadow: 0 8px 32px rgba(60,80,180,0.13);
    transform: translateY(-4px) scale(1.03);
    z-index: 1;
}
.column h2 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    color: #111;
}
.column p {
    font-size: 1.05rem;
    color: #111;
    margin-bottom: 0;
}
footer {
    text-align: center;
    padding: 0.5rem 1rem 0.75rem 1rem;
    background: #eee;
    color: #555;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
    z-index: 10;
}
@media (max-width: 700px) {
    .columns {
        flex-direction: column;
        gap: 1.5rem;
    }
    main {
        padding: 1rem 0.5rem 7rem 0.5rem;
        margin-bottom: 8rem;
    }
    footer {
        padding-bottom: 1rem;
    }
}
/* Tool logo styles */
.tool-logo {
    display: block;
    margin: 0 auto 1rem auto;
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e3e6f3;
    box-shadow: 0 2px 8px rgba(60,80,180,0.10);
    padding: 0.5rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.tool-logo:hover {
    box-shadow: 0 4px 16px rgba(60,80,180,0.18);
    border-color: #b0b8d1;
}

/* ScriptGuide brand accent color - used on ScriptGuide pages */
.scriptguide-accent {
    color: #557c99;
}
