```css
:root {
--green: #0f4f3d;
--cream: #f5efeb;
--navy: #0d1636;
--light-green: #d8e4d7;
}
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: var(--cream);
}
.jeppy-hero {
background: var(--cream);
min-height: 100vh;
position: relative;
overflow: hidden;
}
.jeppy-navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 70px;
background: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.jeppy-logo-area img {
width: 90px;
}
.jeppy-nav-links {
display: flex;
gap: 40px;
}
.jeppy-nav-links a {
text-decoration: none;
color: #1e1e1e;
font-weight: 500;
font-size: 18px;
}
.jeppy-nav-links a:hover {
color: var(--green);
}
.jeppy-quote-btn {
background: var(--green);
color: white;
padding: 16px 32px;
border-radius: 40px;
text-decoration: none;
font-weight: 600;
transition: 0.3s ease;
}
.jeppy-quote-btn:hover {
transform: translateY(-2px);
}
.jeppy-hero-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 80px 70px;
position: relative;
}
.jeppy-left {
width: 55%;
z-index: 2;
}
.paw-icon {
font-size: 40px;
margin-bottom: 20px;
opacity: 0.3;
}
.jeppy-left h1 {
font-size: 68px;
line-height: 1.15;
color: var(--green);
margin-bottom: 30px;
font-family: Georgia, serif;
font-weight: 700;
}
.jeppy-left p {
font-size: 26px;
line-height: 1.7;
color: #1f1f1f;
max-width: 700px;
}
.jeppy-buttons {
display: flex;
gap: 20px;
margin-top: 40px;
}
.main-btn,
.secondary-btn {
background: var(--green);
color: white;
padding: 18px 38px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 20px;
transition: 0.3s ease;
}
.main-btn:hover,
.secondary-btn:hover {
transform: translateY(-3px);
}
.jeppy-right {
width: 40%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.logo-circle {
position: absolute;
top: -130px;
z-index: 1;
}
.logo-circle img {
width: 360px;
}
.quote-card {
background: white;
border-radius: 30px;
padding: 40px;
width: 100%;
max-width: 470px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
position: relative;
z-index: 2;
margin-top: 120px;
}
.quote-card h2 {
font-size: 48px;
margin-bottom: 15px;
color: var(--navy);
font-family: Georgia, serif;
}
.discount {
color: var(--green);
font-weight: 700;
margin-bottom: 25px;
font-size: 20px;
}
.step {
margin-bottom: 28px;
}
.step label {
display: block;
margin-bottom: 12px;
font-weight: 700;
font-size: 22px;
color: #1f1f1f;
}
.zip-row {
display: flex;
gap: 10px;
}
.quote-card input {
width: 100%;
padding: 18px;
border-radius: 16px;
border: 1px solid #ddd;
font-size: 18px;
margin-bottom: 14px;
box-sizing: border-box;
}
.zip-row button {
background: var(--green);
color: white;
border: none;
border-radius: 16px;
padding: 0 28px;
font-size: 18px;
font-weight: 600;
cursor: pointer;
}
.service-options {
display: flex;
gap: 15px;
}
.service-options button {
flex: 1;
padding: 18px;
border-radius: 18px;
border: 1px solid #ddd;
background: white;
font-size: 18px;
cursor: pointer;
transition: 0.3s ease;
}
.service-options button:hover {
background: var(--green);
color: white;
}
.submit-btn {
width: 100%;
background: var(--green);
color: white;
border: none;
border-radius: 50px;
padding: 20px;
font-size: 22px;
font-weight: 700;
cursor: pointer;
margin-top: 10px;
transition: 0.3s ease;
}
.submit-btn:hover {
transform: translateY(-2px);
}
.jeppy-hero::before {
content: '';
position: absolute;
bottom: -120px;
left: -100px;
width: 120%;
height: 320px;
background: var(--light-green);
border-radius: 50%;
opacity: 0.6;
}
@media (max-width: 1200px) {
.jeppy-hero-content {
flex-direction: column;
gap: 80px;
}
.jeppy-left,
.jeppy-right {
width: 100%;
}
.jeppy-left h1 {
font-size: 52px;
}
}
@media (max-width: 768px) {
.jeppy-navbar {
flex-direction: column;
gap: 20px;
padding: 25px;
}
.jeppy-nav-links {
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.jeppy-hero-content {
padding: 40px 25px;
}
.jeppy-left h1 {
font-size: 38px;
}
.jeppy-left p {
font-size: 20px;
}
.jeppy-buttons {
flex-direction: column;
}
.logo-circle img {
width: 250px;
}
.quote-card {
padding: 25px;
}
.quote-card h2 {
font-size: 34px;
}
}
```
---