﻿/* ==============================
   protectionStyle.css
   Mobile-first, very simple,
   easy to customize, viewport-friendly
   ============================== */

/* ------ RESET BASIC ELEMENTS ------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ------ CONTAINER ------ */
.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
}

/* ------ HEADER ------ */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header__title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.header__subtitle {
    font-size: 1rem;
    color: #555;
}

.highlight {
    color: #1a1b45;
}

/* ------ SECTION TITLES ------ */
.section {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.section__title {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 1rem;
}

.section__text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* ------ FEATURES LIST ------ */
.features-list {
    list-style: none;
}

.features-list__item {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

    .features-list__item::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #007bff;
    }

/* ------ PROTECTION TABLE ------ */
.protection-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

    .protection-table th,
    .protection-table td {
        padding: 0.75rem;
        text-align: left;
        border-bottom: 1px solid #ddd;
        font-size: 0.95rem;
    }

    .protection-table th {
        background-color: #007bff;
        color: #fff;
        font-weight: 600;
    }

    .protection-table td {
        color: #555;
    }

.bundle-note {
    margin-top: 0.75rem;
    font-style: italic;
    font-weight: 600;
    color: #333;
}

/* ------ FORM STYLES ------ */
.form {
    margin-top: 1rem;
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #222;
}

.required {
    color: #d00;
    margin-left: 0.25rem;
    font-weight: normal;
}
/* Text, email, tel, number inputs */
.form__input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}
/* Fieldset styling */
.form__fieldset {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.form__legend {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}
/* Checkbox and label */
.form__checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #222;
}

.form__checkbox {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
}
/* Submit button */
.form__button {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

    .form__button:hover {
        background-color: #0056b3;
    }

/* ------ FOOTER ------ */
.footer {
    text-align: center;
    margin-top: 3rem;
    color: #777;
    font-size: 0.85rem;
}

/* ------ RESPONSIVE ADJUSTMENTS (if needed) ------ */
/* Since this is mobile-first and already fluid, you can add media queries below
   if you want to tweak typography or spacing for larger screens. For example:

@media (min-width: 768px) {
  .header__title { font-size: 2.5rem; }
  .section__title { font-size: 1.75rem; }
}

*/
