/*
Theme Name: Star Health Agent Theme
Author: Your Name
Description: Responsive theme for health insurance agents
Version: 1.0
*/

body{
font-family: Arial, sans-serif;
margin:0;
background:#f7fafc;
color:#1a202c;
}

header{
background:#0A66C2;
color:white;
padding:15px;
}

nav a{
color:white;
margin-right:15px;
text-decoration:none;
}

.hero{
padding:60px 20px;
text-align:center;
background:#e6f0fa;
}

.hero h1{
font-size:32px;
}

.btn{
background:#2BB673;
color:white;
padding:12px 20px;
text-decoration:none;
border-radius:5px;
display:inline-block;
margin-top:10px;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.plans{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.plan{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.quote-form{
background:white;
padding:30px;
margin-top:40px;
border-radius:10px;
}

input,select{
width:100%;
padding:10px;
margin-top:10px;
}

footer{
background:#0A66C2;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}