 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1f2937;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:100;
}

.nav{
    max-width:1200px;
    margin:auto;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#ff6b00;
    cursor:pointer;
}

.home-btn{
    text-decoration:none;
    background:#ff6b00;
    color:white;
    padding:10px 20px;
    border-radius:30px;
}

/* HERO */

.page-hero{
    background:linear-gradient(
        135deg,
        #fff5ee,
        #ffffff
    );
    padding:80px 20px;
    text-align:center;
}

.page-hero h1{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.page-hero p{
    color:#6b7280;
    max-width:700px;
    margin:auto;
}

/* CONTENT */

.page-content{
    max-width:1000px;
    margin:50px auto;
    padding:0 20px;
}

.content-card{
    background:white;
    border-radius:25px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.content-card h2{
    margin-top:35px;
    margin-bottom:15px;
    color:#ff6b00;
    font-size:24px;
}

.content-card p{
    line-height:1.9;
    margin-bottom:15px;
    color:#4b5563;
}

.content-card ul{
    padding-left:25px;
}

.content-card li{
    margin-bottom:10px;
    line-height:1.8;
    color:#4b5563;
}

/* FOOTER */

.footer{
    margin-top:80px;
    background:#111827;
    color:white;
    text-align:center;
    padding:30px 20px;
}

.footer a{
    color:#ddd;
    text-decoration:none;
    margin:0 10px;
}

.footer-links{
    margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

.page-hero h1{
    font-size:36px;
}

.content-card{
    padding:25px;
}

.logo{
    font-size:24px;
}

}
    .about-hero {
      padding: 140px 20px 100px;
      text-align: center;
      background:
        linear-gradient(135deg,
          #fff5ee,
          #ffffff);
    }

    .about-hero .tag {
      background: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    }

    .about-hero h1 {
      font-size: 60px;
      max-width: 800px;
      margin: 25px auto;
      line-height: 1.2;
    }

    .about-hero p {
      max-width: 700px;
      margin: auto;
      color: #666;
      line-height: 1.8;
    }

    .about-content {
      padding: 100px 20px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-image img {
      width: 100%;
      border-radius: 30px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    }

    .mission {
      background: #ff6b00;
      color: white;
      text-align: center;
      padding: 90px 20px;
    }

    .mission h2 {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .why-fastbite {
      padding: 100px 20px;
    }

    .why-fastbite h2 {
      text-align: center;
      margin-bottom: 50px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .card {
      background: white;
      padding: 30px;
      border-radius: 25px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }

    .stats {
      background: #111827;
      color: white;
      padding: 90px 20px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      text-align: center;
    }

    .stat-grid h2 {
      font-size: 55px;
      color: #ff6b00;
    }

    @media(max-width:768px) {

      .about-grid {
        grid-template-columns: 1fr;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .stat-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .about-hero h1 {
        font-size: 38px;
      }

    }
  

/* HERO */

.contact-hero{
    padding:120px 20px 80px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #fff5ee,
        #ffffff
    );
}

.contact-hero h1{
    font-size:56px;
    font-weight:800;
    color:#111827;
}

.contact-hero p{
    margin-top:15px;
    color:#6b7280;
    font-size:18px;
}

/* MAIN */

.contact-section{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/* LEFT */

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.contact-info h2{
    margin-bottom:25px;
    color:#ff6b00;
}

.info-box{
    margin-bottom:25px;
}

.info-box h4{
    margin-bottom:8px;
    color:#111827;
}

.info-box p{
    color:#6b7280;
    line-height:1.8;
}

/* RIGHT */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.contact-form h2{
    margin-bottom:25px;
    color:#ff6b00;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    font-size:15px;
    outline:none;
}

.form-group textarea{
    min-height:140px;
    resize:vertical;
}

.submit-btn{
    background:#ff6b00;
    color:white;
    border:none;
    padding:14px 30px;
    border-radius:40px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.submit-btn:hover{
    opacity:.9;
}

/* MAP */

.map-box{
    margin-top:40px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.map-box iframe{
    width:100%;
    height:350px;
    border:none;
}

/* MOBILE */

@media(max-width:768px){

.contact-hero h1{
    font-size:38px;
}

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-info,
.contact-form{
    padding:25px;
}

}


.security-hero{
    padding:120px 20px 80px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #eef7ff,
        #ffffff
    );
}

.tag{
    display:inline-block;
    background:white;
    padding:10px 20px;
    border-radius:40px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.security-hero h1{
    font-size:60px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.security-hero p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

/* CONTENT */

.security-content{
    padding:80px 0;
}

.security-content .container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.policy-card{
    background:white;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.policy-card:hover{
    transform:translateY(-5px);
}

.policy-card h2{
    margin-bottom:15px;
    color:#ff6b00;
    font-size:24px;
}

.policy-card p{
    color:#6b7280;
    line-height:1.8;
}

/* CONTACT */

.contact-security{
    padding:80px 20px;
    text-align:center;
    background:#111827;
    color:white;
}

.contact-security h2{
    font-size:40px;
    margin-bottom:15px;
}

.contact-security p{
    color:#d1d5db;
    font-size:18px;
}

.contact-security strong{
    color:#ff6b00;
}

/* MOBILE */

@media(max-width:768px){

    .security-hero h1{
        font-size:40px;
    }

    .security-content .container{
        grid-template-columns:1fr;
    }

    .policy-card{
        padding:25px;
    }

    .contact-security h2{
        font-size:30px;
    }

}
 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #fff;
      color: #111;
      overflow-x: hidden;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    :root {
      --primary: #ff6b00;
      --dark: #111827;
      --gray: #6b7280;
    }

    /* HEADER */

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
    }

    .nav {
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    .download-btn {
      background: var(--primary);
      color: white;
      padding: 12px 25px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
    }

    /* HERO */

    .hero {
      padding-top: 130px;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(135deg,
          #fff5ee 0%,
          #ffffff 60%);
    }

    .hero-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
    }

    .hero-left {
      flex: 1;
    }

    .badge {
      display: inline-block;
      background: #fff;
      padding: 10px 18px;
      border-radius: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
      margin-bottom: 25px;
      font-size: 14px;
    }

    .hero-left h1 {
      font-size: 72px;
      line-height: 1.1;
      font-weight: 800;
    }

    .hero-left span {
      color: var(--primary);
    }

    .hero-left p {
      margin-top: 25px;
      font-size: 18px;
      color: var(--gray);
      line-height: 1.8;
      max-width: 550px;
    }

    .hero-buttons {
      margin-top: 35px;
      display: flex;
      gap: 15px;
    }

    .btn {
      padding: 16px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
    }

    .btn-secondary {
      border: 2px solid #ddd;
      color: #111;
    }

    .hero-right {
      flex: 1;
      position: relative;
      text-align: center;
    }

    .phone {
      width: 320px;
      border-radius: 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    }

    .floating {
      position: absolute;
      background: white;
      padding: 15px 20px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
      font-weight: 600;
    }

    .card1 {
      top: 40px;
      left: 0;
    }

    .card2 {
      bottom: 80px;
      left: 20px;
    }

    .card3 {
      top: 200px;
      right: 0;
    }

    /* FEATURES */

    .section {
      padding: 100px 0;
    }

    .title {
      text-align: center;
      font-size: 48px;
      margin-bottom: 60px;
      font-weight: 800;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .feature {
      padding: 35px;
      border-radius: 25px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
      text-align: center;
    }

    .feature h3 {
      margin: 15px 0;
    }

    /* HOW */

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .step {
      text-align: center;
    }

    .number {
      width: 70px;
      height: 70px;
      background: var(--primary);
      color: white;
      margin: auto;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    /* SCREENSHOTS */

    .screens {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    .screens img {
      width: 250px;
      border-radius: 30px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    }

    /* CTA */

    .cta {
      padding: 100px 0;
    }

    .cta-box {
      background: linear-gradient(135deg,
          #ff6b00,
          #ff9a3d);
      color: white;
      padding: 70px;
      border-radius: 40px;
      text-align: center;
    }

    .cta-box h2 {
      font-size: 52px;
    }

    .cta-box p {
      margin: 20px auto;
      max-width: 700px;
    }

    .cta-box a {
      display: inline-block;
      margin-top: 20px;
      padding: 16px 35px;
      background: white;
      color: var(--primary);
      text-decoration: none;
      border-radius: 40px;
      font-weight: 700;
    }

    /* FAQ */

    .faq {
      max-width: 900px;
      margin: auto;
    }

    .faq-item {
      padding: 25px;
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 20px;
    }

    /* FOOTER */

    footer {
      background: #111827;
      color: white;
      padding: 60px 0;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      margin-bottom: 25px;
    }

    .footer-links a {
      color: #ddd;
      text-decoration: none;
    }

    .copy {
      text-align: center;
      color: #aaa;
    }

    /* MOBILE */

    @media(max-width:900px) {

      .hero-wrap {
        flex-direction: column;
        text-align: center;
      }

      .hero-left h1 {
        font-size: 48px;
      }

      .features {
        grid-template-columns: 1fr;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .hero-buttons {
        justify-content: center;
      }

      .phone {
        width: 260px;
      }

    }
  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1f2937;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO */

.terms-hero{
    padding:120px 20px 80px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #fff5ee,
        #ffffff
    );
}

.tag{
    display:inline-block;
    background:white;
    padding:10px 20px;
    border-radius:40px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.terms-hero h1{
    font-size:60px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.terms-hero p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

/* CONTENT */

.terms-content{
    padding:80px 0;
}

.terms-content .container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.term-card{
    background:white;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.term-card:hover{
    transform:translateY(-5px);
}

.term-card h2{
    color:#ff6b00;
    margin-bottom:15px;
    font-size:24px;
}

.term-card p{
    color:#6b7280;
    line-height:1.8;
}

/* FOOTER */

.terms-footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.terms-footer h2{
    font-size:38px;
    margin-bottom:15px;
}

.terms-footer p{
    color:#d1d5db;
    font-size:18px;
}

.terms-footer strong{
    color:#ff6b00;
}

/* MOBILE */

@media(max-width:768px){

    .terms-hero h1{
        font-size:40px;
    }

    .terms-content .container{
        grid-template-columns:1fr;
    }

    .term-card{
        padding:25px;
    }

    .terms-footer h2{
        font-size:28px;
    }

}