 /* Global Reset & Base Styles (Brand Consistent) */ * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Segoe UI', Roboto, sans-serif; background: #ffffff; color: #444; line-height: 1.7; padding: 40px 20px; max-width: 1400px; margin: 0 auto; } /* Brand Colors (Matched to Latest Contact Page Style + Reference Image) */ :root { --gold: #b89a46; /* Main gold */ --mute-gold: #c9b060; /* Mute gold for headings */ --teal: #006180; /* Main teal for buttons/accents */ --light-gold-bg: #f7f5f0; /* Soft gold background (Our Custom Promise) */ --light-grey-1: #f8f8f8; /* Step boxes background (light blue tint) */ --light-grey-2: #f0f0f0; /* Important Notes background */ --border-teal: #00618020; /* Subtle teal border for step boxes */ --hover-shadow: 0 8px 20px rgba(0, 97, 128, 0.08); /* Hover shadow for boxes */ --hover-transform: translateY(-5px); /* Hover transform */ } /* Header & Branding - Balanced Logo + Title (Left/Right Aligned) */ .header-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; } /* Balanced Logo Size (Matched to Header Text) */ .brand-logo { max-width: 220px; /* Balanced with header title */ height: auto; align-self: center; } .page-title-wrapper { text-align: right; } .page-title { font-size: 42px; color: var(--gold); margin-bottom: 8px; font-weight: 500; letter-spacing: 1px; } .page-subtitle { color: #666; font-size: 16px; } /* Our Custom Promise Section (Matches Reference Image) */ .process-intro { background: var(--light-gold-bg); padding: 25px 30px; margin-bottom: 40px; border-radius: 12px; text-align: center; /* Matches reference centering */ transition: all 0.3s ease; /* Hover transition */ } .process-intro:hover { box-shadow: var(--hover-shadow); transform: var(--hover-transform); } .process-intro h2 { color: var(--gold); font-size: 18px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; font-weight: 700; } .process-intro p { font-size: 15px; color: #555; line-height: 1.7; max-width: 1200px; margin: 0 auto; } /* Custom Process Steps (6-Step Layout - Balanced Grid) */ .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 40px; } /* Process Step Box (Matches Reference Image Style + Hover Effects) */ .process-step { background: var(--light-grey-1); padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); border-left: 3px solid var(--border-teal); /* Subtle teal border (matches reference) */ text-align: center; /* Centered content (matches reference) */ transition: all 0.3s ease; /* Smooth hover transition */ } /* Hover Effects for Step Boxes */ .process-step:hover { box-shadow: var(--hover-shadow); transform: var(--hover-transform); border-left-color: var(--gold); /* Change border color on hover */ } /* Step Number (Gold Circle - 1-6 Numbering) */ .step-number { display: inline-block; width: 50px; height: 50px; background: var(--gold); color: #ffffff; border-radius: 50%; text-align: center; line-height: 50px; font-weight: 700; font-size: 20px; margin-bottom: 15px; } /* Step Icon (Matches Reference Image Icons) */ .step-icon { font-size: 24px; color: var(--gold); margin-bottom: 10px; } .process-step h3 { color: var(--teal); font-size: 20px; margin-bottom: 15px; font-weight: 700; letter-spacing: 0.3px; text-transform: capitalize; /* Matches reference title case */ } .process-step p { font-size: 14px; color: #555; line-height: 1.6; } /* Important Notes Section (With Hover Effects - FIXED Bullet Points) */ .process-notes { background: var(--light-grey-2); padding: 30px; border-radius: 12px; margin-bottom: 40px; transition: all 0.3s ease; /* Hover transition */ } /* Hover Effects for Important Notes Box */ .process-notes:hover { box-shadow: var(--hover-shadow); transform: var(--hover-transform); } .process-notes h3 { color: var(--teal); font-size: 20px; margin-bottom: 15px; font-weight: 700; } .process-notes ul { list-style-type: none; font-size: 14px; color: #555; } .process-notes li { margin-bottom: 10px; padding-left: 25px; position: relative; } /* FINAL FIX: Use Unicode value (\2022) instead of literal/entity to avoid encoding issues */ .process-notes li:before { content: "\2022"; /* Unicode bullet point (100% compatible) */ color: var(--gold); font-size: 20px; position: absolute; left: 0; top: -5px; font-family: Arial, sans-serif; /* Force basic font for consistency */ } /* Action Buttons Section (Mute Gold + Bold Heading) */ .action-buttons { text-align: center; margin-bottom: 40px; padding: 20px; } .action-buttons h3 { color: var(--mute-gold); /* Mute gold color */ font-size: 22px; margin-bottom: 20px; font-weight: 700; /* Bold text */ text-transform: capitalize; } /* Action Buttons (Unified Style - No Underlines Ever) */ .btn { display: inline-block; background: var(--teal); color: #ffffff; padding: 12px 25px; border-radius: 8px; text-decoration: none !important; /* Force no underline */ text-decoration-line: none; /* Explicit no underline */ font-size: 15px; font-weight: 500; margin: 0 10px 10px; transition: all 0.3s ease; border: none; cursor: pointer; } /* Ensure NO underline on hover/focus/active */ .btn:hover, .btn:focus, .btn:active { background: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); text-decoration: none !important; /* Critical: No underline on hover */ text-decoration-line: none; } /* Official Platforms Footer (Simplified - Focus on Action Buttons) */ .official-platforms { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; } .official-platforms h4 { color: var(--teal); font-size: 18px; margin-bottom: 15px; font-weight: 500; } .platform-links a { color: var(--teal); text-decoration: none; margin: 0 10px; font-size: 15px; transition: color 0.3s ease; } .platform-links a:hover { color: var(--gold); } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; align-items: flex-start; } .page-title-wrapper { text-align: left; margin-top: 15px; } .page-title { font-size: 32px; } .brand-logo { max-width: 180px; } .process-steps { grid-template-columns: 1fr; } .process-intro, .process-step, .process-notes { padding: 20px; } .btn { display: block; width: 100%; margin: 0 0 15px 0; } } @media (max-width: 576px) { body { padding: 20px 15px; } .page-title { font-size: 28px; } .brand-logo { max-width: 150px; } .platform-links a { display: block; margin: 8px 0; } } 