<style>
    :root {
        --primary: #4F46E5;
        --secondary: #10B981;
        --dark: #1F2937;
        --light: #F9FAFB;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--light);
        color: var(--dark);
        overflow-x: hidden;
    }

    .navbar {
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .hero {
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
        min-height: 80vh;
        padding: 60px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        color: var(--primary);
        margin: 0;
    }

    .section {
        max-width: 1200px;
        margin: auto;
        padding: 40px 20px;
    }

    .section h2 {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 20px;
        text-align: center;
    }

    .section p {
        color: #4B5563;
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .feature-box {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .feature-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .feature-box h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: var(--dark);
    }

    .pricing-table {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .pricing-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        text-align: center;
        transition: 0.3s;
    }

    .pricing-card h2 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .pricing-card .price {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary);
        margin: 15px 0;
    }

    .pricing-card .features {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .pricing-card .features li {
        margin: 8px 0;
        color: #4B5563;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 25px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background-color: var(--primary);
        color: #fff;
    }

    .btn-primary:hover {
        background-color: #4338CA;
        transform: translateY(-2px);
    }

    .btn-secondary {
        background-color: #fff;
        color: var(--primary);
        border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
        background-color: #f3f4f6;
        transform: translateY(-2px);
    }

    .cta-section {
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(16, 185, 129, 0.9));
        color: white;
        text-align: center;
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .cta-section a {
        background: white;
        color: var(--primary);
        padding: 12px 30px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .cta-section a:hover {
        background: #f3f4f6;
    }

    .contact-input {
        transition: all 0.3s ease;
    }

    .contact-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    }

    .animate-slide-up {
        animation: slideUp 0.5s ease forwards;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .contact-options {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    .option-link {
        color: #4a90e2;
        text-decoration: none;
        font-weight: bold;
        margin: 5px 0;
        transition: color 0.3s;
    }

    .option-link:hover {
        color: #357ab8;
    }

    @media (max-width: 600px) {
        .hero h1, .cta-section h2 {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 768px) {
        .contact-wrapper {
            grid-template-columns: 1fr; /* Stack columns on smaller screens */
        }

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

        .logo {
            margin-bottom: 20px;
        }

        .nav {
            display: flex;
            justify-content: center;
        }

        .nav a {
            margin: 0 10px;
            font-size: 16px;
            text-decoration: none;
            color: blue; /* Adjust color as needed */
        }
        
        .icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.app img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.app span {
  font-size: 14px;
}

    }
</style>
