.mainTitle {
    font-family: Norse, Geneva, Tahoma, sans-serif;
    text-align: center;
    font-size: 48px;
    padding-top: 50px;
}

.under-title {
    font-family: "Aptos Light", Geneva, Tahoma, sans-serif;
    text-align: center;
    padding: 10px;
}

button.CTA {
    background: #0C2D48;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    border: none;
    color: #E0B568;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

button.CTA:hover {
    background: #E0B568;
    color: #0C2D48;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cta-button-container {
    text-align: center;
    padding: 50px;
}

.card-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #ffffff;
}

.hero-section {
    background-image: url("images/Norse Animal Ornament III - Hi-res - Transparent.png");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;

    background-color: #F7F5F2;
}

.card {
    background: #F7F5F2;
    border: 1px solid rgba(12,45,72,0.25);
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 220px;
    width: 220px;
    flex-direction: column;
    box-shadow:
            0 2px 6px rgba(0,0,0,0.1),
            0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;}

.title, .description {
    color: #0C2D48;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow:
            0 4px 12px rgba(0,0,0,0.12),
            0 6px 16px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px;
}

.title {
    font-family: Norse, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    margin: 0 0 6px;
    text-align: center;
}

.description {
    font-family: "Aptos Light", Geneva, Tahoma, sans-serif;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 12px;
    text-align: center;
    /* clamp to 3 lines, then show “…” */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-button-container {
    margin-top: auto;
    text-align: center;
}

.card-button {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: #0C2D48;
    color: #ffffff;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-button:hover {
    background: #0A263F;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

