:root{
    --primary: #0a1f44;
    --custom_blue: #0038c8;

}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #f5f7fb;
    color: #222;
}

header {
    background: #0a1f44;
    color: white;
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

header img {
    width: 220px;
}
.header-options {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background-color: white;
    border-radius: 10px;
}
.header-options .link {
    font-size: 14px;
    text-decoration: none;
    color: blue;
}
.header-options .link:hover {
    cursor: pointer;
    color: darkblue;
}
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    color: white;
    padding: 80px 40px;
    background: #0a1f44;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    margin: 0;
}

/* ----- .hero_graphic ===> hero_graphic.css ----- */

.hero-text {
    max-width: 500px;
    text-align: left;
}
.hero h1 {
    font-size: 40px;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.5em;
    margin: 0 auto 30px;
}
.button {
    background: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    display: inline-block;
}
.section {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section h2 {
    margin-bottom: 30px;
}

.selection-tab-bin {
    display: flex;
    width: 100%;
    max-width: 1000px;
    gap: 10px;
}
.selection-tab{
    color: #0a1f44;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 10px);
    padding: 10px 0;
    border: 1px solid #0a1f44;
}
.selection-tab:hover{
    cursor: pointer;
}
.selection-tab.selected{
    color: white;
    background-color: #0a1f44;
}
.selection-tab .icon{
    height: 25px;
    margin-right: 10px;
    box-shadow: none;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 1000px;
    margin: 40px 0;
    /* background-color: #0a1f44; */
}

.card {
    background: white;
    padding: 30px;
    width: calc(100% - 60px);
    max-width: calc(800px - 60px);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: 0.2s ease-in-out;
}
.card:hover{
    box-shadow: 0 0 10px -2px gray;
}
.card-header{
    display: flex;
    align-items: center;
    width: calc(100%);
    margin-bottom: 20px;
}
.card-icon{
    height: 30px;
    margin: 0 10px 0 0;
}
.card-title{
    font-size: 22px;
    line-height: 1.5em;
    margin: 0;
}
.card-text{
    font-size: 17px;
    line-height: 1.5em;
    margin: 0;
}
.card-image{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(200px);
    height: 100%;
}

.pricing-card {
    max-width: calc(500px - 60px - 4px);
    border: 2px solid var(--primary);
}
.pricing-card.growth{
    border: 2px solid var(--custom_blue);
}
.pricing-card .title{
    font-size: 22px;
    margin: 0 0 0.5em;
}
.pricing-card .price{
    font-size: 18px;
    /* font-weight: 600; */
    color: green;
    margin: 0 0 1em 0;
}
.pricing-card .tagline{
    font-size: 16px;
    line-height: 1.5em;
    margin: 0 0 1em 0;
}
.pricing-card .features-list{
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
}
.pricing-card .features-list .item{
    font-size: 16px;
    margin-bottom: 0.5em;
}
.pricing-card .features-list .item::before{
    font-weight: 600;
    color: var(--primary);
    content: '\2713\00a0';
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
}

input, textarea {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gray;
}
textarea{
    min-height: 100px;
    max-height: 300px;
}

button {
    background: #0a1f44;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #071630;
}

.footer {
    background: #111827;
    color: white;
    padding: 20px;
    text-align: center;
}


@media (max-width: 800px) {

    header {
        padding: 10px;
        display: flex;
        align-items: center;
    }

    header img {
        width: 200px;
    }
    .header-options {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 14px;
        background-color: white;
        border-radius: 10px;
    }
    .header-options .link {
        font-size: 13px;
        text-decoration: none;
        color: blue;
    }
    .header-options .link:hover {
        cursor: pointer;
        color: darkblue;
    }

    .hero{
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }
    .hero-content{
        width: 100%;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.5em;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.5em;
        margin: 0 auto 30px;
    }

    .button {
        font-size: 14px;
        padding: 10px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        margin: 5px;
        display: inline-block;
    }

}