
/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Section Style */
.hero-section {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8));
    background-color: #0056b3;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    min-height: 40vh;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.hidden {
    display: none;
}


.page-title-section {
    padding: 60px 0 20px 0;
    /* Adjusts top space like the About page */
}
@media print {
    header, footer, #quoteForm, #step2Container, 
    #btnSave, #btnReset, #btnPrint,
    #savedQuotesSection{
        display: none !important;
    }
    .card.shadow-sm.mx-auto {
        display: none !important;
    }

    .card-body {
        display: block !important;
    }

    #quoteResult {
        display: block !important;
    }

    #quoteResult.d-none {
        display: block !important;
    }S

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .card {
        border: 1px solid #333 !important;
        box-shadow: none !important;
    }

    .card-header {
        background: #333 !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    #breakdownTable {
        border-collapse: collapse;
    }

    #breakdownTable th, 
    #breakdownTable td {
        border: 1px solid #333 !important;
        padding: 8px;
    }

    .result-premium-box {
        border: 1px solid #ccc;
    }

    #quoteResult::before {
        content: "🛡️ Pinnacle Shield Insurance — Official Quote";
        display: block;
        text-align: center;
        font-size: 18pt;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #333;
    }

    #quoteResult::after {
        content: "This is a personalized estimate. Final rates may vary. Contact us at 1-800-SHIELD for more details.";
        display: block;
        text-align: center;
        font-size: 9pt;
        color: #666;
        margin-top: 30px;
        padding-top: 10px;
        border-top: 1px solid #ccc;
    }
}

/* Tablet */
@media (max-width: 768px) {
.hero h1 {
font-size: 1.8rem;
}
/* ... additional rules ... */
}
/* Mobile */
@media (max-width: 480px) {
.hero {
padding: 30px 15px;
}
/* ... additional rules ... */
}