 /* ✅ Global Reset & Base Styles */ * { 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 */ :root { --gold: #b89a46; --teal: #006180; /* Main teal color */ --light-gold-bg: #f7f5f0; --light-grey-1: #f8f8f8; /* Lighter grey for form */ --light-grey-2: #f0f0f0; /* Slightly darker grey for contact */ --border-gold: #e0d8c0; } /* ✅ Header & Branding - Aligned Logo + Title (With Larger Logo) */ .header-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; } /* ✅ Larger Logo (Balanced with header text) */ .brand-logo { max-width: 220px; /* Increased from 130px to match header size */ height: auto; /* Vertical alignment to match title baseline */ 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; } /* ✅ Private Consultation Service Section - Rounded Corners, No Left Highlight */ .consultation-intro { background: var(--light-gold-bg); padding: 25px 30px; margin-bottom: 40px; border-radius: 12px; /* Rounded corners */ } .consultation-intro h2 { color: var(--gold); font-size: 18px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; font-weight: 700; /* Bold font */ } .consultation-intro p { font-size: 15px; color: #555; line-height: 1.7; } /* ✅ Main Content Grid (Form + Contact Info) - Light Grey Color Depth Separation */ .main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 0; /* Remove gap for seamless divider */ border-radius: 12px; overflow: hidden; /* For rounded corners on grid */ box-shadow: 0 2px 10px rgba(0,0,0,0.02); } /* ✅ Form Section - Lighter Grey Background */ .form-section { background: var(--light-grey-1); padding: 30px; } .form-section h3 { color: var(--teal); font-size: 24px; margin-bottom: 25px; font-weight: 700; /* Bold font */ letter-spacing: 0.3px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; font-size: 14px; color: #444; margin-bottom: 8px; font-weight: 500; } /* ✅ Asterisk color changed to #006180 (teal) */ .required { color: var(--teal); /* Changed from red to teal #006180 */ } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #e1e1e1; border-radius: 8px; font-family: inherit; font-size: 14px; color: #444; background: #ffffff; transition: border-color 0.3s ease; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); } .form-group textarea { min-height: 150px; resize: vertical; line-height: 1.6; } .submit-btn { background: var(--teal); color: #ffffff; border: none; padding: 12px 30px; border-radius: 8px; font-size: 15px; font-weight: 500; cursor: pointer; transition: background-color 0.3s ease; } .submit-btn:hover { background: #004a63; } /* ✅ Contact Info Section - Slightly Darker Grey Background (Color Depth) ✅ Restored exact typography/layout from your reference code */ .contact-section { background: var(--light-grey-2); padding: 30px; border-left: 1px solid #e1e1e1; /* Light grey divider */ } .contact-section h3 { color: var(--teal); font-size: 24px; margin-bottom: 25px; font-weight: 700; /* Bold font */ letter-spacing: 0.3px; } /* ✅ Exact Contact Us typography/layout from your reference code */ .contact-item { margin-bottom: 22px; /* Exact spacing between items */ font-size: 14px; line-height: 1.5; /* Exact line height */ display: flex; flex-direction: column; } .contact-item i { color: var(--gold); /* Golden icons */ font-size: 16px; margin-right: 10px; /* Exact icon spacing */ vertical-align: top; display: inline-block; width: 18px; /* Fixed icon width for alignment */ } .contact-item .label { color: var(--teal); /* Teal label color */ font-weight: 500; margin-bottom: 2px; /* Exact label-value spacing */ display: inline-block; } .contact-item .value { color: #444; /* Exact text color */ margin-left: 28px; /* Exact indent (matches screenshot) */ display: block; line-height: 1.4; /* Exact line height for address */ } /* ✅ Official Platforms Footer - Removed Underline */ .official-platforms { text-align: center; margin-top: 40px; padding-top: 20px; /* Removed border-top: 1px solid #e1e1e1; */ } .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 (Updated Logo Sizing) */ @media (max-width: 768px) { .header-container { flex-direction: column; align-items: flex-start; } .page-title-wrapper { text-align: left; margin-top: 15px; } .main-grid { grid-template-columns: 1fr; } .contact-section { border-left: none; border-top: 1px solid #e1e1e1; } .page-title { font-size: 32px; } .consultation-intro { padding: 20px; } .form-section h3, .contact-section h3 { font-size: 20px; } .brand-logo { max-width: 180px; /* Larger mobile logo (updated from 100px) */ } } @media (max-width: 576px) { body { padding: 20px 15px; } .page-title { font-size: 28px; } .submit-btn { width: 100%; padding: 15px; } .platform-links a { display: block; margin: 8px 0; } .brand-logo { max-width: 150px; /* Larger small-screen logo (updated from 80px) */ } } 