        :root {
            --primary: #70bcee;
            --accent: #2563eb;
            --text: #554533;
            --light-bg: #f8fafc;
            --border: #e2583f;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #ffffff;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        header h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        header p {
            font-size: 1.25rem;
            color: #141516;
            margin-bottom: 1.5rem;
        }
        .tagline {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }
        section {
            margin-bottom: 4rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--border);
            padding-bottom: 0.5rem;
        }
        .whatsapp-btn {
  background-color: #25D366;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease;
}
        h3 {
            font-size: 1.3rem;
            color: var(--accent);
            margin: 1.5rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        ul {
            list-style-type: none;
            margin-bottom: 1.5rem;
        }
        li {
            padding: 0.4rem 0;
            position: relative;
            padding-left: 1.5rem;
        }
        li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        .process-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            list-style-type: none;
        }
        .process-list li {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
            font-weight: 500;
        }
        .process-list li::before {
            content: "";
        }
        .contact-info {
            background: var(--primary);
            color: white;
            padding: 2.5rem;
            border-radius: 8px;
        }
        .contact-info h2 {
            color: white;
            border-color: #334155;
        }
        .contact-info li {
            color: #cbd5e1;
        }
        .contact-info li::before {
            color: #60a5fa;
        }
        @media (max-width: 768px) {
            header h1 { font-size: 2.2rem; }
            .container { padding: 2rem 1rem; }
        }
    @media (max-width: 600px) {
            header h1 { font-size: 2.2rem; }
            .container { padding: 2rem 1rem; }
            .navbar{flex-direction: column;}
            .nav-links{flex-direction: column;gap: 2.2rem;}
            
        }
/* Reset default margins and padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* Navbar container styling using Flexbox */
        .navbar {
            background-color: #d33131;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            border-radius: 1px;
        }

        /* Branding / Logo */
        .navbar .logo a {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

        /* Unordered list styling */
        .nav-links {
            list-style: none;
            display: flex;
        }

        /* Space out individual list items */
        .nav-links li {
            padding: 0 15px;
        }

        /* Style the actual hyperlinks */
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        /* Hover effect for interactive feedback */
        .nav-links a:hover {
            color: #ffd700; /* Gold color on hover */
        }

        /* Highlight the active webpage link */
        .nav-links a.active {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 5px;
        }
    .mylogo
    { border-radius: 50%;height: 5rem;width: 5rem;}