*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fb;
color:#1f2937;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
/* background:linear-gradient(135deg,#1e3a8a,#2563eb); */
background-color: #1A2537;
padding:18px 0;
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:600;
color:#fff;
}

.logo img{
height:40px;
width:auto;
}

.nav ul{
display:flex;
list-style:none;
gap:25px;
}

.nav a{
color:#fff;
text-decoration:none;
font-size:14px;
}
.hero {
    background: #f5f7fb;
    padding: 80px 20px;
    text-align: center;
}

.hero-container {
    max-width: 1100px;
    margin: auto;
}

.hero-img {
    width: 100%;
    max-width: 900px;
    height: 350px;       /* reduce height */
    object-fit: cover;   /* keep image proportional */
    border-radius: 12px; /* optional nice look */
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #64748b;
    max-width: 650px;
    margin: auto;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
}

section{
padding:70px 0;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:28px;
}

/* FEATURES SECTION */

.features-section{
background:#ffffff;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.feature-box{
background:#fff;
padding:30px 25px;
border-radius:16px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
transition:.3s;
border:1px solid #e5e7eb;
}

.feature-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(37,99,235,0.15);
}

.feature-icon{
width:60px;
height:60px;
background:linear-gradient(#5577e4);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
margin:0 auto 15px;
}

.feature-box h3{
margin-bottom:10px;
font-size:18px;
font-weight:600;
}

.feature-box p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}

/* Responsive */
@media(max-width:900px){
.feature-grid{
grid-template-columns:1fr;
}
}

/* HOW IT WORKS */

.how-section{
background:linear-gradient(to right,#f8fafc,#eff6ff);
padding:80px 0;
}

.how-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.how-card{
background:#fff;
padding:30px 25px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.05);
position:relative;
transition:.3s;
}

.how-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(249,115,22,0.15);
}

.how-number{
position:absolute;
top:-20px;
left:25px;
background:linear-gradient(135deg,#f97316,#ea580c);
color:#fff;
width:50px;
height:50px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
font-size:18px;
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.how-card h3{
margin-top:20px;
margin-bottom:10px;
font-size:18px;
}

.how-card p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}

@media(max-width:900px){
.how-grid{
grid-template-columns:1fr;
}
}

.gf-about-section {
  background: #fffdfd; /* soft green background */
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  color: #000000; /* dark green text */
}

.gf-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gf-section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.gf-section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 18px;
}

.gf-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gf-about-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.gf-about-card:hover {
  transform: translateY(-5px);
}

.gf-about-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.gf-about-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000000; /* medium green for headings */
}

.gf-about-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}
/* CONTACT */

.contact-section{
/* background:#ffffff; */
background:linear-gradient(to right,#f8fafc,#eff6ff);

padding:80px 0;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.contact-card{
background:#fff;
padding:25px;
border-radius:14px;
display:flex;
align-items:flex-start;
gap:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
border:1px solid #e5e7eb;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(34,197,94,0.18);
}

.contact-icon{
width:55px;
height:55px;
min-width:55px;
/* background:linear-gradient(135deg,#f97316,#ea580c); */
background:linear-gradient(#5577e4);


color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:22px;
}

.contact-card h3{
margin-bottom:6px;
font-size:17px;
}

.contact-card p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}

@media(max-width:900px){
.contact-grid{
grid-template-columns:1fr;
}
}

/* FOOTER */

.footer{
background:linear-gradient(135deg,#0f172a,#1e293b);
padding:30px 0;
text-align:center;
}

.footer-links{
margin-bottom:10px;
}

.footer-links a{
color:#22c55e;
text-decoration:none;
font-size:14px;
margin:0 8px;
}

.footer-links a:hover{
color:#f97316;
}

.footer-links span{
color:#94a3b8;
}

.footer-copy{
color:#cbd5e1;
font-size:14px;
}


/* Wrapper & Container */
.delete-account-form-wrapper {
    background-color: #f0f4f8;
    padding: 85px 20px;
    display: flex;
    justify-content: center; /* center the container horizontally */
}

.delete-account-form-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center; /* center the title */
}

/* Title */
.delete-account-form-container h2 {
    text-align: center; /* ensures title is centered */
    color: #1c3569;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

/* Form Card */
.delete-account-form {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delete-account-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* Labels, Inputs, Button remain same */
.delete-account-form label { font-weight: 500; margin-bottom: 5px; color: #0f172a; }
.delete-account-form input,
.delete-account-form textarea {
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 16px;
    color: #1e293b;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.delete-account-form input:focus,
.delete-account-form textarea:focus {
    border-color: #1c3569;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.35);
    outline: none;
}
.delete-account-form textarea { resize: vertical; min-height: 120px; }
.delete-account-form button {
    background-color: #1c3569;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.delete-account-form button:hover { background-color: #0f9d75; transform: translateY(-2px); }

/* Success & Error messages */
.success-msg { color: #10b981; text-align: center; font-weight: 500; margin-bottom: 15px; }
.error-msg { color: #ef4444; text-align: center; font-weight: 500; margin-bottom: 15px; }

/* Responsive */
@media (max-width: 480px) {
    .delete-account-form { padding: 30px 20px; }
    .delete-account-form-container h2 { font-size: 24px; }
    .delete-account-form button { font-size: 16px; }
}