/* Brand Colors */
:root {
    --sage-green: #8A9A5B;
    --steel-blue: #4682B4;
    --slate-gray: #708090;
    --desert-tan: #F5E6CC;
	--maroon-brown: #800000; /* The rich maroon style brown */ 
}

/* Updated Hero Section for more "Pop" */
/* Hero Section - Padding reduced by 50% */
.hero-section {
    padding-top: 40px;     /* Reduced from 120px */
    padding-bottom: 40px;    /* Reduced from 120px */
    margin-bottom: 0; /* Changed from 30px to 0 to close the gap */
    background-color: var(--desert-tan);
    text-align: center;
    border-bottom: 2px solid #D2B48C;
}

.hero-section h1 {
    color: var(--maroon-brown);
    font-size: 3.2rem; /* Larger, but controlled */
    font-weight: 800; /* Bold to capture attention */
    margin-bottom: 15px; /* Tightened the gap to the sub-header */
    letter-spacing: -0.5px; /* Tightens the look for a modern feel */
    line-height: 1.1;
}

.hero-section p {
    font-size: 1.35rem;
    color: #555;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Marketing Feature Section */
/* The Feature Box with the overlap effect */
.feature-box {
    background-color: #ffffff;
    border-radius: 12px; /* Restoring the rounded edges from the original */
    padding: 25px 40px 40px 40px; /* Reduced top padding from 40px to 25px (15px reduction) */
    /* This pulls the box UP over the hero border */
    margin-top: -30px;  /* Slight overlap with Hero for visual connection */
    position: relative; /* Ensures it stays on top of the border */
    z-index: 10;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    border: 1px solid #e0e0e0;     /* was #f0f0f0; */                               
}

.feature-box h2 {
    color: var(--maroon-brown);
    font-size: 1.85rem;
    font-weight: 800;
    margin-top: 0; /* Ensures title is tight to the top of the box */
    margin-bottom: 20px;
	/* letter-spacing: -0.2px; */
}

.feature-box p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-box p:last-child {
    margin-bottom: 0;
}

/* Content Width Management */
.content-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px 40px 20px; /* Top padding set to 0 to allow overlap */
}

.fp-adv-main-header {
    font-size: 1.8rem;
    color: var(--steel-blue);
    margin-top: 40px;
    font-weight: 700;
}

/* Secondary Section Headers (e.g., above the Table or Form) */
/* Section Header - Class-based to avoid H3 global clashes */
.fp-adv-section-header {
    color: var(--maroon-brown) !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px; /* Space out the sections */
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--desert-tan);/* Defined brand underline */
    display: inline-block;/* Keeps the underline tight to the text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Authorized Typography - Isolated for Marketing Pages */
.fp-adv-body-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}
/* Premium Benefits Table - Modern Look */
/* Section Header - Class-based to avoid H3 global clashes */
.fp-adv-section-header {
    color: var(--maroon-brown) !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 4px solid var(--desert-tan);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Marketing Table - Verified Gradient Header */
.fp-adv-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 10px 0 20px 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* Added a subtle full-frame border to define the right and bottom */
    border: 1px solid #E0D6C5; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.fp-adv-table th {
    /* Verified 3-Point Gradient for depth */
    background: #800000; /* Fallback for older browsers */
    background: linear-gradient(180deg, #B22222 0%, #800000 70%, #660000 100%);
    color: #ffffff;
    text-align: left;
    padding: 24px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 4px solid var(--desert-tan); /* Stronger visual anchor */
}

.fp-adv-table td {
    padding: 15px 17px;
	/* Horizontal dividers for the modern look */
    border-bottom: 1px solid #E0D6C5;
    vertical-align: top;
    color: #333;
    line-height: 1.2;
}

/* Defined Zebra Striping */
.fp-adv-table tr:nth-child(even) td {
    background-color: #F9F3E9; /* Visible Desert Mist */
}

/* Feature Column - The Premium Left Anchor */
.fp-adv-table td:first-child {
    width: 30%;
    font-weight: 800;
    color: var(--maroon-brown);
    /* Keeps the heavy 5px accent on the left as requested */
    border-left: 5px solid var(--maroon-brown);
}

/* Power Word Styling */
.benefit-highlight {
    font-weight: 800;
    color: #222;
}

/* Recapture / CTA Section */
.fp-adv-recapture-box {
    background-color: #F9F3E9; /* Soft Desert Mist wash */
    padding: 30px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0; /* Rounded on the right, flat on the left */
    border-left: 6px solid var(--maroon-brown); /* Strong "Action" anchor */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fp-adv-recapture-title {
    font-size: 1.8rem;
    color: var(--steel-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.fp-adv-price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--maroon-brown);
    margin-bottom: 10px;
    display: block;
}

/* Full Form Container */
.fp-adv-form-container {
    margin: 10px 0 60px 0; /* Reduced top margin */
}

/* Two-Column Grid for Contact Info */
.fp-adv-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive fix for mobile */
@media (max-width: 600px) {
    .fp-adv-form-grid { grid-template-columns: 1fr; }
}

.fp-adv-form-group {
    margin-bottom: 20px;
}

.fp-adv-form-label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.fp-adv-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0D6C5;
    border-radius: 4px;
    font-size: 1.1rem;
    box-sizing: border-box;
    background-color: #fff;
}

/* Pill Checkbox Logic */
.fp-adv-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.fp-adv-pill-container input[type="checkbox"] {
    display: none; 
}

.fp-adv-pill-label {
    padding: 10px 18px;
    background-color: #fff;
    border: 2px solid #E0D6C5;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.fp-adv-pill-container input[type="checkbox"]:checked + .fp-adv-pill-label {
    background-color: var(--maroon-brown);
    border-color: var(--maroon-brown);
    color: #fff;
}

/* Large Text Area */
.fp-adv-textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border: 1px solid #E0D6C5;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1.1rem;
    resize: vertical;
}

/* The Final Submit & Reset */
.fp-adv-submit-btn {
    background-color: var(--maroon-brown);
    color: #fff;
    padding: 20px 45px;
    border: none;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.3s;
}

.fp-adv-submit-btn:hover {
    opacity: 0.9;
}

.reset-btn {
    background: none;
    border: none;
    color: var(--slate-gray);
    cursor: pointer;
    margin-left: 15px;
}