:root {
    --color-primary-orange: #FFDAB9; /* Peach Puff - very light orange */
    --color-secondary-orange: #FFC18C; /* Light Orange */
    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --color-background-light: #FFF5EE; /* Seashell */
    --color-accent-orange: #FF8C00; /* Dark Orange */
    --color-strip-bg: #FDF5E6; /* Lighter, almost white orange for top strip */
    --color-disclaimer-bg: #FFE0B2; /* Slightly darker light orange for disclaimer block */
    --color-red-warning: #DC2626;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
}

/* Custom Tailwind overrides and utility classes */
.text-color-primary-orange { color: var(--color-primary-orange); }
.bg-color-primary-orange { background-color: var(--color-primary-orange); }
.text-color-secondary-orange { color: var(--color-secondary-orange); }
.bg-color-secondary-orange { background-color: var(--color-secondary-orange); }
.text-color-text-dark { color: var(--color-text-dark); }
.text-color-text-light { color: var(--color-text-light); }
.bg-color-background-light { background-color: var(--color-background-light); }
.text-color-accent-orange { color: var(--color-accent-orange); }
.bg-color-accent-orange { background-color: var(--color-accent-orange); }
.bg-color-strip-bg { background-color: var(--color-strip-bg); }
.bg-color-disclaimer-bg { background-color: var(--color-disclaimer-bg); }
.text-red-600 { color: var(--color-red-warning); }
.border-color-accent-orange { border-color: var(--color-accent-orange); }
.focus\:ring-color-secondary-orange:focus { --tw-ring-color: var(--color-secondary-orange); }
.form-checkbox:checked {
    border-color: transparent;
    background-color: var(--color-accent-orange);
}
.form-checkbox:checked:hover {
    background-color: #e67e00; /* slightly darker accent orange */
}

/* General link/button styles */
a:hover, button:hover {
    text-decoration: none !important;
}

/* Hero Section Specifics */
.hero-section {
    min-height: 100vh;
}

.text-shadow-lg {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Title Underline Effect */
.title-underline {
    position: relative;
    display: inline-block;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent-orange);
    border-radius: 2px;
}

/* Rating Card Styling for equal height */
.rating-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Advantage Card Styling for equal height */
.advantage-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up-1 {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-fade-in-up-2 {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.animate-fade-in-up-3 {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

/* General on-scroll animation class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.fade-in-up-delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.fade-in-up-delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.fade-in-up-delay-3 {
    transition-delay: 0.3s;
}

/* Footer Logos */
.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-link img {
    max-height: 48px; /* Equivalent to h-12 */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover img {
    transform: scale(1.05);
}
.infoGuardBlock {
    /* Padding for the main content block */
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    /* Margin at the bottom to separate from subsequent content */
    margin-bottom: 20px;
}

.infoGuardBlock h1 {
    /* Heading 1 styles: moderate font size, bold, with vertical spacing */
    font-size: 1.8rem; /* Approximately 28.8px with a base of 16px */
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.infoGuardBlock h2 {
    /* Heading 2 styles: moderate font size, semi-bold, with vertical spacing */
    font-size: 1.5rem; /* Approximately 24px */
    font-weight: 600;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
}

.infoGuardBlock h3 {
    /* Heading 3 styles: moderate font size, semi-bold, with vertical spacing */
    font-size: 1.3rem; /* Approximately 20.8px */
    font-weight: 600;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.4;
}

.infoGuardBlock h4 {
    /* Heading 4 styles: slightly larger than base, medium weight, with vertical spacing */
    font-size: 1.15rem; /* Approximately 18.4px */
    font-weight: 500;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}

.infoGuardBlock h5 {
    /* Heading 5 styles: base font size, medium weight, with vertical spacing */
    font-size: 1rem; /* Approximately 16px */
    font-weight: 500;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.6;
}

.infoGuardBlock p {
    /* Paragraph styles: base font size, comfortable line height, and bottom margin */
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 1em;
}

.infoGuardBlock ul {
    /* Unordered list styles: base font size, standard indentation, and vertical spacing */
    font-size: 1rem;
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Indentation for list items */
}

.infoGuardBlock li {
    /* List item styles: comfortable line height and spacing between items */
    font-size: 1rem; /* Inherit or explicitly set */
    line-height: 1.6;
    margin-bottom: 0.5em; /* Space between list items */
}
@media screen and (width < 576px) {
header span {
    font-size: 1.2rem !important;
}
}
@media screen and (width < 768px) {
    header {
        position: relative;
    }
    #navMenu {
        position: absolute;
        top: 100%;
        background: #ff8c00;
        z-index: 11;
        padding: 20px;    
    }
}