
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}



 .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 60px;
    margin-right: 10px;
  }
  
  .nav-links, .nav-actions {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li, .nav-actions li {
    margin: 0 15px;
  }
  
  .nav-links a, .nav-actions a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover, .nav-actions a:hover {
    color: #007bff;
  }
  
  .nav-actions a {
    display: flex;
    align-items: center;
  }

main {
    padding: 40px;
}


.hero {
    text-align: left;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #CE2232;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-buttons button {
    margin-right: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #CE2232;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-buttons button:hover {
    background-color: #0974B0;
    transform: scale(1.05);
}


.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 22%;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature h3 {
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
}

.feature p {
    color: #666;
}


.privacy-section {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    border-radius: 8px;
    margin: 40px auto;
}

.icon img {
    width: 50px;
    margin-bottom: 20px;
}

.privacy-section h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #CE2232;
}

.privacy-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #666;
}

.privacy-section button {
    padding: 10px 20px;
    border: none;
    background-color: #CE2232;
    color: white;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.privacy-section button:hover {
    background-color: #0974B0;
    transform: scale(1.05);
}


.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #CE2232 100%, white 10%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    overflow: hidden; 
}

.banner .content {
    max-width: 50%;
}

.banner h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat h2 {
    color: #66a3ff;
    margin: 0;
}

.hheader {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
   
}

.hheader h1 {
    color: #e74c3c;
    font-size: 2.5em;
    margin: 0;
}

.hheader p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.hheader .btn {
    background-color: #CE2232;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease; 
}

.hheader .btn:hover {
    background-color: #0974B0;
    transform: scale(1.05);
}


.ccontent {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f1f1f1;
}

.column {
    flex: 1;
    margin: 0 10px;
}

.column h2 {
    color: #e74c3c;
    font-size: 1.5em;
    margin-bottom: 10px;
}

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

.column ul li {
    margin: 5px 0;
}


.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: relative;
}

.footer p {
    margin: 10px 0;
}


.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #0974B0;
    transform: scale(1.1);
}
.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .cta-buttons .button {
        display: block;
        margin: 10px auto;
    }

    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
        margin-bottom: 20px;
    }

    .privacy-section {
        padding: 20px;
    }

    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner .content {
        max-width: 100%;
    }

    .stats {
        flex-direction: column;
    }

    .stat {
        margin-bottom: 20px;
    }

    .social-icons a {
        font-size: 18px;
        margin: 0 5px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .feature {
        width: 45%;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .privacy-section {
        padding: 30px;
    }

    .banner {
        flex-direction: row;
    }

    .banner .content {
        max-width: 50%;
    }
}


@media (min-width: 1025px) {
    .features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .feature {
        width: 22%;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .privacy-section {
        padding: 40px;
    }

    .banner {
        flex-direction: row;
    }

    .banner .content {
        max-width: 50%;
    }
}
