body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #32b3c6, #075c87);
    color: white;
}

header {
    text-align: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3em;
    margin: 0;
}

header p {
    font-size: 1.3em;
    margin-top: 10px;
}

header img{
    height: 100px;
    width: 100px;
}
.presentation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
    gap: 40px;
}

.presentation .text {
    max-width: 450px;
}

.presentation h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.presentation p {
    font-size: 1.1em;
    line-height: 1.5;
}

.presentation ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.presentation ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.image img {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
}

.download-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.3s ease;
}

.btn.ios {
    background-color: #ffffff;
    color: #000;
}

.btn.android {
    background-color: #3ddc84;
    color: white;
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
}


.screenshots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.screenshot {
    width: 45%;
    max-width: 200px;
    text-align: center;
}

.screenshot img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.screenshot p {
    margin-top: 10px;
    font-size: 0.95em;
    color: white;
    font-weight: bold;
}


.pricing-section {
    text-align: center;
    padding: 50px 20px;
    background: #f0f8f8;
  }
  
  .pricing-section h2 {
    font-size: 2em;
    color: #2a8d95;
    margin-bottom: 40px;
  }
  
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 30px;
    transition: transform 0.3s;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
  }
  
  .pricing-card h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 1.5em;
    font-weight: bold;
    color: #2a8d95;
    margin-bottom: 20px;
  }
  
  .features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .features li {
    text-align: left;
    padding: 6px 0;
    font-size: 0.95em;
    color: #444;
  }
  
  .pricing-card button {
    background-color: #2a8d95;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
  }
  
  .pricing-card button:hover {
    background-color: #237a80;
  }
  