﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

label{
    color:white;
}
body {
    margin-bottom: 60px;
    background-color: rgb(0,102,153);
    
}
.tableheader {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(51,153,204,1) 75%, rgba(0,102,153,1) 100%);
    color: black;
    text-align: center;
    border: 1px solid black;
}

.pricing-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

    .pricing-section h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .pricing-section .subtitle {
        font-size: 18px;
        color: #666;
        margin-bottom: 50px;
    }

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 40px 30px;
    width: 300px;
    transition: transform 0.2s ease;
}

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

.price {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0a5c7d;
}

    .price small {
        font-size: 16px;
        font-weight: normal;
        color: #555;
    }

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

    .pricing-card ul li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
    }

        .pricing-card ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #0a5c7d;
            font-weight: bold;
        }

.highlight {
    border: 2px solid #0a5c7d;
}

.example-table {
    margin-top: 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 30px;
}

    .example-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .example-table th,
    .example-table td {
        padding: 12px;
        border-bottom: 1px solid #ddd;
        text-align: center;
    }

    .example-table th {
        background-color: #0a5c7d;
        color: white;
    }

.cta {
    margin-top: 60px;
}

    .cta a {
        display: inline-block;
        padding: 15px 30px;
        background-color: #0a5c7d;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
    }

        .cta a:hover {
            background-color: #084b64;
        }

@@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}
