* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #eef4f8;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.title {
    background: linear-gradient(135deg, #1e3a5f, #295d8a);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.title h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: red;
}

p {
    color: #2f3b46;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
    color: skyblue;
}

.description {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
    color: skyblue;
}

.card {
    background-color: #f8fbff;
    border: 1px solid #d9e8f5;
    padding: 35px;
    margin: 30px 0;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.card h2 {
    margin-bottom: 18px;
    color: #08aecc;
}

h3 {
  color: navy;
}

.pricing-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.price-item {
    background-color: #eef6ff;
    border: 1px solid #d9e8f5;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.price-item h3 {
    margin-bottom: 10px;
    color: #1e3a5f;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #08aecc;
    margin-bottom: 10px;
}

.list {
    margin-top: 15px;
    padding-left: 20px;
    color: #2f3b46;
}

.list li {
    margin-bottom: 8px;
}

.note {
    margin-top: 15px;
    font-style: italic;
    color: #5f7a8a;
}

.card p {
    margin-bottom: 15px;
}

.contact-info {
    margin: 20px 0;
}

html {
    scroll-behavior: smooth;
}

.form-button {
    display: inline-block;
    background-color: #295d8a;
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.form-button:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

@media (max-width: 700px) {
    .title h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .card {
        padding: 25px;
    }
}