* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    border-bottom: 2px solid #f4f4f4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    height: 55px;
    width: auto;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    position: relative;
}

nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #ff6600;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #fff, #ffeadd);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
}

.cta-btn {
    padding: 14px 30px;
    background: #ff6600;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #e05500;
}

/* Features */
.features {
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    color: #ff6600;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    width: 260px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 12px;
    color: #ff6600;
}

/* How it Works */
.how-it-works {
    padding: 70px 20px;
    background: #fafafa;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.step {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.step:hover {
    transform: scale(1.05);
}

.step span {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6600;
}

/* Why Choose */
.why {
    padding: 60px 20px;
    text-align: center;
}

.why h2 {
    margin-bottom: 20px;
    color: #ff6600;
}

.why ul {
    list-style: none;
    padding: 0;
}

.why li {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 70px 20px;
    background: #fff7f0;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.testimonial {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    width: 280px;
    border-radius: 10px;
    font-style: italic;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
}

.testimonial h4 {
    margin-top: 15px;
    color: #ff6600;
    font-style: normal;
}

/* Newsletter */
.newsletter {
    padding: 70px 20px;
    text-align: center;
    background: #fafafa;
}

.newsletter form {
    margin-top: 20px;
}

.newsletter input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 30px;
    width: 250px;
    outline: none;
}

.newsletter button {
    padding: 12px 20px;
    margin-left: 10px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #e05500;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-top: 2px solid #f4f4f4;
    font-size: 0.95rem;
}

/* Responsive */
@media(max-width: 900px){
    .feature-cards, .testimonial-cards, .steps {
        flex-direction: column;
        align-items: center;
    }
}

/* About Page */
.about-hero, .privacy-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #fff, #ffeadd);
}

.about-hero h1, .privacy-hero h1 {
  color: #ff6600;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-page, .privacy-page {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.about-page h2, .privacy-page h2 {
  margin-bottom: 15px;
  color: #ff6600;
}

.about-page ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-page li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Privacy Page */
.privacy-page section {
  margin-bottom: 40px;
}
