   <style>

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #000000;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
/* Header Fixes - Reduced Height & Working Dropdown */
/* ADD THESE STYLES TO FIX THE DROPDOWN */

/* Fix dropdown visibility and positioning */
.nav-dropdown {
    position: relative;
    flex-shrink: 0;
    z-index: 1100; /* Higher than everything else */
}

.dropdown-toggle {
    color: white;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.25s;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle span.caret {
    font-size: 11px;
}

.dropdown-toggle:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.25);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Position below the button */
    left: 0;
    background: rgba(0,32,80,0.98);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 1200; /* VERY HIGH z-index */
    margin-top: 5px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
    border-radius: 0;
    border: none;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.15);
}

/* Ensure header has proper z-index */
header {
    z-index: 1000;
    position: sticky;
    top: 0;
}

.header-top {
    position: relative;
    z-index: 1001;
}

.main-nav {
    position: relative;
    z-index: 1002;
}

/* Make sure nothing overlaps the dropdown */
.hero-section,
.content-section,
.locations-section {
    position: relative;
    z-index: 1; /* Much lower than dropdown */
}

/* Desktop specific fixes */
@media (min-width: 969px) {
    .nav-dropdown {
        z-index: 1100;
    }
    
    .dropdown-menu {
        z-index: 1200;
    }
}

/* Mobile dropdown styles */
@media (max-width: 968px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        text-align: center;
        padding: 10px;
        margin: 3px 0;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin-top: 4px;
        display: none;
        z-index: auto;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 18px;
        font-size: 13px;
    }
}
header {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px 0; /* Reduced from default padding */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0; /* Reduced vertical padding */
    gap: 15px;
}

.logo {
    font-size: 22px; /* Slightly reduced */
    font-weight: bold;
    letter-spacing: 2px;
}

/* Main Navigation - Desktop */
.main-nav {
    display: flex;
    gap: 15px; /* Reduced gap */
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 6px 12px; /* Reduced padding */
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 13px; /* Slightly smaller font */
    white-space: nowrap;
}

.main-nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Header CTA Buttons */
.header-cta, .header-mini-cta {
    background-color: #FF6B35;
    padding: 8px 16px !important; /* Reduced padding */
    font-weight: bold;
    font-size: 13px !important;
}

.header-cta:hover, .header-mini-cta:hover {
    background-color: #FF8555 !important;
}

.header-mini-cta {
    display: none;
}

/* Launch Special Button in Nav */
.launch-special-btn {
    background-color: #FFD700 !important;
    color: #1976D2 !important;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255,255,255,0.9);
    border: none;
    color: white;
    padding: 8px 16px; /* Reduced padding */
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
}

/* Location Navigation Bar - Reduced Height */
.location-nav {
    background: rgba(0,0,0,0.1);
    padding: 6px 0; /* Reduced from default */
    display: flex;
    gap: 10px; /* Reduced gap */
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.location-nav a {
    color: white;
    text-decoration: none;
    padding: 4px 10px; /* Reduced padding */
    border-radius: 3px;
    transition: background-color 0.3s;
    font-size: 12px; /* Smaller font */
}

.location-nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-mini-cta {
        display: block;
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1565C0;
        flex-direction: column;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .main-nav.mobile-open {
        display: flex;
    }
    
    .main-nav a {
        width: 100%;
        text-align: left;
        padding: 10px 15px;
    }
    
    .location-nav {
        padding: 4px 0;
    }
    
    .location-nav a {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Desktop - Ensure nav is visible */
@media (min-width: 769px) {
    .main-nav {
        display: flex !important; /* Force display on desktop */
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Floating Special Button */
.floating-special-btn {
    display: none;
}

@media (max-width: 768px) {
    .floating-special-btn {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #FFD700;
        color: #1976D2;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 999;
        animation: pulse 2s infinite;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
        }
        /* Launch Special Section */
.launch-special-section {
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
padding: 60px 0;
text-align: center;
color: #000;
border-bottom: 5px solid #FF6B35;
}

.launch-special-section h2 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.launch-special-content {
max-width: 900px;
margin: 0 auto;
background: rgba(255,255,255,0.9);
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.launch-special-content h3 {
font-size: 36px;
color: #FF6B35;
margin-bottom: 20px;
}

.launch-special-content p {
font-size: 20px;
line-height: 1.8;
margin-bottom: 15px;
}

.launch-special-highlight {
background: #FF6B35;
color: white;
padding: 30px;
border-radius: 15px;
margin: 30px 0;
font-size: 24px;
font-weight: bold;
}

.launch-special-terms {
background: #f0f0f0;
padding: 20px;
border-radius: 10px;
margin-top: 20px;
font-size: 16px;
text-align: left;
}

/* Postcard Showcase Section */
.postcard-showcase {
background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
padding: 60px 0;
text-align: center;
color: white;
}

.postcard-showcase h2 {
font-size: 42px;
margin-bottom: 30px;
}

.postcard-opener {
background: #FF6B35;
padding: 40px 0;
margin-bottom: 20px;
}

.opener-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
align-items: center;
}

.opener-text h2 {
font-size: 40px;
line-height: 1.1;
color: #FFFFFF;
margin-bottom: 20px;
}

.opener-text h3 {
font-size: 25px;
line-height: 1.3;
color: #FFFFFF;
margin: 20px 0;
}

.opener-text p {
font-size: 22px;
line-height: 1.3;
color: #000000;
margin-bottom: 10px;
}

.postcard-photo1 {
background: #f0f0f0;
border-radius: 15px;
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.postcard-photo1 img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 15px;
}

/* Postcard Showcase Section 2 - UPDATED TO ROW FORMAT */
.postcard-showcase-2 {
background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
padding: 40px 0;
}

.postcard-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
margin-bottom: 20px;
}

.postcard-item {
background: white;
padding: 5px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.postcard-item img {
width: 100%;
height: auto;
display: block;
border-radius: 5px;
}
        /* Postcard Showcase Section */
        .postcard-showcase {
            background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
            padding: 60px 0;
            text-align: center;
            color: white;
        }
        
        .postcard-showcase h2 {
            font-size: 42px;
            margin-bottom: 30px;
        }
        
        
        /* Postcard Opener Section */
        .postcard-opener {
            background: #FF6B35;
            padding: 40px 0;
            margin-bottom: 20px;
        }
        
        .opener-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
        }
        
        .opener-text h2 {
            font-size: 40px;
            line-height: 1.1;
            color: #FFFFFF;
            margin-bottom: 20px;
            
        }
        
        .opener-text h3 {
            font-size: 25px;
            line-height: 1.3;
            color: #FFFFFF;
            margin: 20px 0;
        }
        
        .opener-text p {
            font-size: 22px;
            line-height: 1.3;
            color: #000000;
            margin-bottom: 10px;
        }
        
        .postcard-photo1 {
            background: #f0f0f0;
            border-radius: 15px;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 18px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .postcard-display {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            max-width: 900px;
            margin: 0 auto;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 18px;
        }
               
        /* Postcard Showcase Section */
       .postcard-opener {
            background: #FF6B35;
            padding: 40px 0;
            margin-bottom: 20px;
        }
        
        .opener-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
        }
      
        .postcard-showcase {
            background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
            padding: 20px 0;
            text-align: center;
            color: white;
        }
        
        .postcard-showcase h2 {
            font-size: 42px;
            margin-bottom: 0px;
        }
        
        .postcard-display {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            max-width: 900px;
            margin:  auto;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 18px;
        }
      
       .postcard-display2 {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            max-width: 900px;
            margin: 0 auto;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 18px;
        }
     
        
        /* Founder Story Section */
        .founder-story {
            background: white;
            padding: 80px 0;
        }
        
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .story-text h2 {
            font-size: 41px;
            color: #1976D2;
            margin-bottom: 30px;
        }
        
        .story-text h3 {
            font-size: 25px;
            color: #FF6B35;
            margin: 20px 0;
        }
        
        .story-text p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .family-photo {
            background: #f0f0f0;
            border-radius: 15px;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 18px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        /* Key Benefits with Icons */
        .benefits-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .benefits-section h2 {
            text-align: center;
            font-size: 42px;
            color: #1976D2;
            margin-bottom: 60px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .benefit-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            background: #2196F3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
        }
        
        .benefit-card h3 {
            font-size: 22px;
            color: #1976D2;
            margin-bottom: 15px;
        }
        
        .benefit-card p {
            font-size: 16px;
            color: #000000;
            line-height: 1.6;
        }
/* Even button positioning in cards */
.benefit-card,
.promo-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 70px; /* Space for button */
}

.benefit-card p,
.promo-card p:last-of-type {
    margin-bottom: auto; /* Push content up */
}

.benefit-card .header-cta,
.promo-card .header-cta {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    margin: 0;
    text-align: center;
}

/* Size cards button positioning */
.size-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
    position: relative;
}

.size-card .ad-size-cta {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    margin: 0 !important;
}
        
        /* Promotions Section */
        .promo-section {
            padding: 40px 0;
            background: white;
        }
        
        .promo-section h2 {
            font-size: 42px;
            text-align: center;
            margin-bottom: 0px;
            color: #1976D2;
        }
        
        .promo-subtitle {
            text-align: center;
            font-size: 23px;
            color: #000000;
            margin-bottom: 60px;
        }
        
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .promo-card {
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            color: white;
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
            transition: transform 0.3s;
        }
        
        .promo-card:hover {
            transform: translateY(-5px);
        }
        
        .promo-card.best-value {
            background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
        }
        
        .discount-badge {
            font-size: 52px;
            font-weight: bold;
            margin-bottom: -10px;
        }
        
        .promo-details {
            font-size: 20px;
            margin-bottom: 0px;
        }
        
        .promo-note {
            text-align: center;
            font-size: 25px;
            color: #FF6B35;
            font-weight: bold;
            margin-top: 10px;
        }
/* Even button positioning in cards */
.benefit-card,
.promo-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 70px; /* Space for button */
}

.benefit-card p,
.promo-card p:last-of-type {
    margin-bottom: auto; /* Push content up */
}

.benefit-card .header-cta,
.promo-card .header-cta {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    margin: 0;
    text-align: center;
}

/* Size cards button positioning */
.size-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
    position: relative;
}

.size-card .ad-size-cta {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    margin: 0 !important;
}
        
        /* Ad Sizes Section */
        .ad-sizes-section {
            background: #f8f9fa;
            padding: 40px 0;
        }
        
        .ad-sizes-section h2 {
            font-size: 43px;
            text-align: center;
            margin-bottom: -10px;
            color: #1976D2;
        }
        
        .sizes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .size-card {
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            color: white;
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .size-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .size-card h3 {
            font-size: 24px;
            margin-bottom: -10px;
        }
        
        .size-price {
            font-size: 36px;
            margin: 0px 0;
        }
        
        .size-details {
            font-size: 19px;
            opacity: 0.95;
            line-height: 1.2;
        }
        
        /* Locations Section */
          .locations-section {
            background: white;
            padding: 80px 0;
        }
        
        .locations-section h2 {
            font-size: 42px;
            text-align: center;
            margin-bottom: 60px;
            color: #1976D2;
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .location-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .location-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .location-header {
            background: #2196F3;
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .location-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        
        .location-name {
            font-size: 20px;
            font-weight: bold;
        }
        
        .map-placeholder {
            background: #e0e0e0;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 16px;
        }
        
        .location-details {
            padding: 20px;
        }
        
        .detail-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .detail-row:last-child {
            border-bottom: none;
        }
        
        .detail-label {
            font-weight: 600;
            color: #666;
        }
        
        .detail-value {
            color: #2196F3;
            font-weight: bold;
        }
        
        /* Checkout Section */
         .checkout-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .checkout-section h2 {
            font-size: 42px;
            text-align: center;
            margin-bottom: 60px;
            color: #1976D2;
        }
        
        .checkout-form {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #000000;
            font-size: 16px;
        }
        
        select, input[type="number"], input[type="email"], input[type="text"], textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        
        select:focus, input:focus, textarea:focus {
            outline: none;
            border-color: #2196F3;
        }
        
        .total-display {
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }
        
        .total-label {
            font-size: 18px;
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .total-amount {
            font-size: 48px;
            font-weight: bold;
        }
        
        .discount-applied {
            color: #FFD700;
            font-weight: bold;
            margin-top: 15px;
            font-size: 18px;
        }
        

      .location-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2196F3;
    color: white;
    padding: 20px 25px;
    margin: -25px -25px 20px -25px;
    border-radius: 10px 10px 0 0;
}

.location-number {
    font-size: 32px;
    font-weight: bold;
}

.location-prices {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 18px;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
}

.price-value.discount {
    color: #FF3B3B;
}

.section-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
  
  /* Contact Modal */
.contact-modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
animation: fadeIn 0.3s;
}

.contact-modal-content {
background: white;
margin: 50px auto;
padding: 40px;
border-radius: 20px;
max-width: 600px;
position: relative;
animation: slideDown 0.3s;
}

.contact-close {
position: absolute;
right: 20px;
top: 20px;
font-size: 35px;
font-weight: bold;
color: #999;
cursor: pointer;
line-height: 1;
}

.contact-close:hover {
color: #333;
}

.contact-form h2 {
color: #1976D2;
margin-bottom: 30px;
text-align: center;
}

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

.contact-form label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #333;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 16px;
font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: #2196F3;
outline: none;
}

.contact-submit {
width: 100%;
padding: 15px;
background: #FF6B35;
color: white;
border: none;
border-radius: 10px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
}

.contact-submit:hover {
background: #FF5722;
transform: translateY(-2px);
}

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

@keyframes slideDown {
from { transform: translateY(-50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

}
        /* Footer */
  footer {
            background: #333;
            color: white;
            padding: 50px 0;
            text-align: center;
        }
        
        .contact-info {
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .contact-info a {
            color: #2196F3;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: #FF6B35;
        }
@media (max-width: 768px) {
    /* Layout adjustments */
    .story-content, .opener-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .postcard-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Font size reductions */
    .launch-special-section h2 {
        font-size: 28px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .launch-special-content {
        padding: 25px 15px;
    }
    
    .launch-special-content h3 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .launch-special-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .launch-special-content h4 {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .postcard-showcase h2 {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .postcard-showcase p {
        font-size: 18px !important;
        padding: 0 15px;
    }
    
    .opener-text h2 {
        font-size: 24px;
    }
    
    .opener-text h3 {
        font-size: 20px;
    }
    
    .opener-text p {
        font-size: 16px;
    }
    
    .story-text h2 {
        font-size: 28px;
    }
    
    .story-text h3 {
        font-size: 20px;
    }
    
    .story-text p {
        font-size: 16px;
    }
    
    .benefits-section h2,
    .promo-section h2,
    .ad-sizes-section h2,
    .locations-section h2,
    .faq-section h2 {
        font-size: 28px;
    }
    
    .promo-subtitle {
        font-size: 18px;
        padding: 0 15px;
    }
    
    .discount-badge {
        font-size: 42px;
    }
    
    .promo-details {
        font-size: 18px;
    }
    
    .size-card h3 {
        font-size: 18px;
    }
    
    .size-price {
        font-size: 28px;
    }
    
    .size-details {
        font-size: 16px;
    }
    
    /* Checkout form - MINIMAL CHANGES ONLY */
    .checkout-form {
        padding: 25px 15px;
    }
    
    .checkout-section h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .checkout-form label {
        font-size: 14px;
    }
    
    .checkout-form input,
    .checkout-form select,
    .checkout-form textarea {
        font-size: 14px;
        padding: 12px;
    }
}/* Order Summary Compact Formatting - MOBILE ONLY */
@media (max-width: 768px) {
    #grandTotalSection > div {
        padding: 15px !important;
    }

    #grandTotalSection h3 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    #grandTotalSection .detail-row,
    #grandTotalSection > div > div > div {
        font-size: 14px !important;
        padding: 8px 0 !important;
    }

    #grandTotalSection .detail-row span,
    #grandTotalSection #totalLocationsDisplay,
    #grandTotalSection #subtotalDisplay,
    #grandTotalSection #multiMailingDiscountDisplay,
    #grandTotalSection #multiLocationDiscountDisplay {
        font-size: 16px !important;
    }

    #grandTotalSection #finalTotalDisplay {
        font-size: 28px !important;
    }

    #grandTotalSection > div > div {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    #grandTotalSection .instructions-box {
        padding: 15px !important;
    }
    
    #grandTotalSection .instructions-box p {
        font-size: 16px !important;
        margin: 5px 0 !important;
    }
    
    #grandTotalSection .submit-btn {
        font-size: 18px !important;
        padding: 15px !important;
    }
    
    #grandTotalSection .payment-box {
        padding: 20px !important;
    }
    
    #grandTotalSection .payment-amount {
        font-size: 18px !important;
    }
    
    #grandTotalSection .payment-amount span {
        font-size: 24px !important;
    }
    
    #grandTotalSection .payment-link {
        font-size: 18px !important;
        line-height: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
.postcard-row {
grid-template-columns: 1fr;
}
}     
        /* Responsive */
        @media (max-width: 768px) {
            .story-content {
                grid-template-columns: 1fr;
            }
            
            .location-nav {
                font-size: 12px;
            }
            
            .header-top {
                flex-direction: column;
                gap: 15px;
            }
            
            .main-nav {
                flex-direction: column;
                gap: 10px;
            }
            
            .payment-options {
                grid-template-columns: 1fr;
            }
            
            .checkout-form {
                padding: 30px 20px;
            }
        }
      /* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.contact-modal-content {
    background: white;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s;
}

.contact-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.contact-close:hover {
    color: #333;
}

.contact-form h2 {
    color: #1976D2;
    margin-bottom: 30px;
    text-align: center;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2196F3;
    outline: none;
}

.contact-submit {
    width: 100%;
    padding: 15px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-submit:hover {
    background: #FF5722;
    transform: translateY(-2px);
}

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

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Desktop Version Button */
.desktop-version-btn {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.desktop-version-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 5px 10px;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .header-top {
        flex-wrap: wrap;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo {
        font-size: 24px;
    }
    
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        padding: 15px;
        gap: 10px;
    }
    
    .main-nav.mobile-open {
        display: flex;
    }
    
    .main-nav a {
        padding: 12px;
        text-align: center;
        border-radius: 5px;
    }
    
    .main-nav a:hover {
        background: rgba(255,255,255,0.2);
    }
    
    .header-cta {
        width: 100%;
        text-align: center;
    }
    
    .contact-modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .location-card-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .location-prices {
        width: 100%;
        justify-content: space-between;
        font-size: 14px;
        gap: 10px;
    }
    
    .price-value {
        font-size: 18px;
    }
    
    .location-number {
        font-size: 24px;
    }
}



      /* Additional Mobile Fixes */
@media (max-width: 768px) {
    .postcard-showcase h2 {
        font-size: 28px;
    }
    
    .postcard-showcase p {
        font-size: 18px !important;
    }
    
    .opener-content {
        grid-template-columns: 1fr;
    }
    
    .opener-text h2 {
        font-size: 26px;
    }
    
    .opener-text h3 {
        font-size: 20px;
    }
    
    .opener-text p {
        font-size: 16px;
    }
    
    .story-text h2 {
        font-size: 32px;
    }
    
    .story-text h3 {
        font-size: 22px;
    }
    
    .benefits-section h2,
    .promo-section h2,
    .ad-sizes-section h2,
    .locations-section h2,
    .checkout-section h2 {
        font-size: 32px;
    }
    
    .promo-subtitle {
        font-size: 18px;
    }
    
    .size-card h3 {
        font-size: 20px;
    }
    
    .size-price {
        font-size: 32px;
    }
    
    .location-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .checkout-form {
        padding: 30px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .grand-total-line {
        font-size: 16px;
    }
    
    .grand-total-line.final {
        font-size: 24px;
    }
    
    .pay-now-button {
        font-size: 20px;
        padding: 18px;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .postcard-showcase h2 {
        font-size: 24px;
    }
    
    .location-prices {
        flex-direction: column;
        gap: 8px;
    }
    
    .price-item {
        align-items: flex-start;
        width: 100%;
    }
    
    .payment-method-btn {
        padding: 20px 30px;
        font-size: 20px;
    }
}
      /* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1976D2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-question {
    background: #2196F3;
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: #1976D2;
}

.faq-question::after {
    content: '+';
    font-size: 32px;
    font-weight: bold;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 30px;
    background: white;
}

.faq-answer.active {
    max-height: 2000px;
    padding: 30px;
    transition: max-height 0.5s ease-in, padding 0.4s ease-in;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.faq-answer strong {
    color: #1976D2;
    font-weight: 600;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 18px;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}
.submit-btn { width: 100%; padding: 20px; font-size: 24px; font-weight: bold; background: #4CAF50; color: white; border: none; border-radius: 12px; cursor: pointer; margin-bottom: 20px; transition: all 0.3s; }
.submit-btn:hover { background: #45a049; transform: translateY(-2px); }
.submit-btn:disabled { background: #cccccc; cursor: not-allowed; }      
.contact-modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.contact-modal-content { background: white; margin: 50px auto; padding: 40px; border-radius: 20px; max-width: 600px; position: relative; }
.contact-close { position: absolute; right: 20px; top: 20px; font-size: 35px; font-weight: bold; color: #999; cursor: pointer; }
.contact-close:hover { color: #333; }
.contact-form h2 { color: #1976D2; margin-bottom: 30px; text-align: center; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 8px; font-size: 16px; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #2196F3; outline: none; }
.contact-submit { width: 100%; padding: 15px; background: #FF6B35; color: white; border: none; border-radius: 10px; font-size: 18px; font-weight: bold; cursor: pointer; transition: all 0.3s; }
.contact-submit:hover { background: #FF5722; transform: translateY(-2px); }
.contact-submit:disabled { background: #cccccc; cursor: not-allowed; }
.payment-section { max-width: 600px; margin: 40px auto; }
.payment-box { display: flex; flex-direction: column; justify-content: flex-end; align-items: center; background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.2); border-radius: 15px; padding: 30px; }
.payment-box p { font-size: 20px; line-height: 28px; text-align: center; margin-bottom: 20px; color: #333; }
.payment-amount { font-size: 22px; line-height: 28px; font-weight: 700; color: #1976D2; margin-bottom: 25px; text-align: center; }
.payment-amount span { font-size: 32px; }
.payment-link { display: inline-block; font-size: 22px; line-height: 60px; height: 60px; color: #ffffff; width: 100%; background-color: #006aff; text-align: center; box-shadow: 0 4px 15px rgba(0,106,255,0.4); border-radius: 10px; text-decoration: none; font-weight: bold; transition: all 0.3s; }
.payment-link:hover { background-color: #0052cc; transform: translateY(-2px); }      
.instructions-box { background: #FFD700; color: #000; padding: 25px; border-radius: 15px; margin-bottom: 30px; text-align: center; }
.instructions-box p { font-size: 20px; font-weight: bold; margin: 10px 0; }
    
/* Expandable Cards on Mobile - IMPROVED */
@media (max-width: 768px) {
    .size-card, .location-card {
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: visible;
    }
    
    .size-card.collapsed {
        height: 140px;
        overflow: hidden;
    }
    
    .location-card.collapsed {
        height: 120px;
        overflow: hidden;
    }
    
    /* Keep title visible when collapsed */
    .size-card.collapsed h3:first-child,
    .location-card.collapsed .location-header {
        position: relative;
        z-index: 5;
    }
    
    .size-card.collapsed::after, .location-card.collapsed::after {
        content: 'Tap to Expand ▼';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.8);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        z-index: 10;
    }
    
    .size-card.expanded::after, .location-card.expanded::after {
        content: 'Tap to Collapse ▲';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.8);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        z-index: 10;
    }
    
    /* Don't collapse the button */
    .size-card.collapsed .ad-size-cta {
        display: none;
    }
    
    .size-card.expanded .ad-size-cta {
        display: inline-block;
    }
}
/* Floating Launch Special Button */
.floating-special-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-weight: bold;
    font-size: 14px;
    z-index: 9999;
    cursor: pointer;
    border: 3px solid #FF6B35;
    animation: pulse 2s infinite;
    text-decoration: none;
    display: none;
}

@media (max-width: 768px) {
    .floating-special-btn {
        display: block;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255,107,53,0.6);
    }
}
/* Extra small screens */
@media (max-width: 480px) {
    .postcard-row {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .location-nav {
        font-size: 10px;
    }
    
    .location-nav a {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .launch-special-section h2 {
        font-size: 22px;
    }
    
    .postcard-showcase h2 {
        font-size: 20px;
    }
    
    .benefits-grid,
    .sizes-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-link {
        font-size: 18px;
        padding: 15px;
    }
    
    .submit-btn {
        font-size: 20px;
        padding: 15px;
    }
}
/* Mini Get Started Button in Header */
.header-mini-cta {
    display: none;
    background: #FF6B35;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s;
    white-space: nowrap;
    margin: 0 10px;
}
.header-mini-cta:hover {
    background: #FF5722;
    transform: translateY(-1px);
}
@media (max-width: 968px) {
    .header-mini-cta {
        display: inline-block;
    }
    
    .mobile-menu-toggle {
        font-size: 14px;
        padding: 6px 12px;
    }
}
/* DROPDOWN FIX - ADD AT END OF STYLE TAG */
.nav-dropdown {
    position: relative !important;
    z-index: 9999 !important;
}

.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #003366 !important;
    border-radius: 8px !important;
    padding: 8px 0 !important;
    min-width: 220px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important;
    margin-top: 5px !important;
}

.dropdown-menu.show {
    display: block !important;
}

.nav-dropdown:hover .dropdown-menu {
    display: block !important;
}
</style>
