    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: Arial, sans-serif;
        background: #f8f9fa;
        padding: 20px;
    }

    .pricing-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .pricing-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.2s ease;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .price {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .most-popular {
        position: relative;
    }

    .most-popular::before {
        content: "Most Popular";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: #007bff;
        color: white;
        font-size: 0.8rem;
        padding: 4px 10px;
        border-radius: 12px;
    }

    ul {
        list-style: none;
        margin-top: 15px;
    }

    ul li {
        margin: 8px 0;
        display: flex;
        align-items: center;
    }

    ul li::before {
        content: "✔";
        color: #007bff;
        margin-right: 8px;
    }

    .btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px;
        text-align: center;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.2s ease;
    }

    .btn-primary {
        background: #007bff;
        color: white;
    }

    .btn-dark {
        background: black;
        color: white;
    }

    .btn:hover {
        opacity: 0.9;
    }

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

    .section {
        text-align: center;
        padding: 40px 20px;
    }

    .section h1 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .section p {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .feature {
        background: white;
        padding: 8px 15px;
        border-radius: 50px;
        border: 1px solid #ddd;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 5px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .feature::before {
        content: "✔";
        color: #3b82f6;
    }

    .buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .btn {
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-primary {
        background-color: #007bff;
        color: white;
        border: none;
    }

    .btn-secondary {
        background-color: white;
        color: black;
        border: 1px solid #ccc;
    }

    .btn-primary:hover {
        background-color: #0056b3;
    }

    .footer {
        background-color: white;
        padding: 40px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-section {
        flex: 1;
        min-width: 220px;
    }

    .footer h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .footer p, .footer a {
        color: #555;
        text-decoration: none;
        font-size: 0.95rem;
    }

    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .social-icons a {
        font-size: 1.2rem;
        color: #555;
    }

    @media (max-width: 768px) {
        .section h1 {
            font-size: 1.5rem;
        }
        .section p {
            font-size: 1rem;
        }
    }

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

    .services-section {
        background: linear-gradient(to bottom, #f0f7ff, #ffffff);
        text-align: center;
        padding: 60px 20px;
    }

    .services-badge {
        display: inline-block;
        background-color: #e6f2ff;
        color: #007bff;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .services-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 10px 0;
        color: #111;
    }

    .services-description {
        font-size: 1.1rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .services-title {
            font-size: 2rem;
        }
        .services-description {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .services-title {
            font-size: 1.6rem;
        }
        .services-badge {
            font-size: 12px;
            padding: 6px 14px;
        }
    }

    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: #fafafa;
        padding: 20px;
    }

    .pricing-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .pricing-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.2s ease;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .pricing-card p {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .price {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

    ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
        font-size: 0.95rem;
    }

    ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: green;
        font-weight: bold;
    }

    .btn {
        background: black;
        color: white;
        padding: 10px;
        text-align: center;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.2s ease;
    }

    .btn:hover {
        background: #333;
    }

    /* Mobile adjustments */
    @media (max-width: 600px) {
        .pricing-card {
            padding: 15px;
        }
        .price {
            font-size: 1.2rem;
        }
    }

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

    section {
        padding: 40px 20px;
        text-align: center;
        max-width: 1200px;
        margin: auto;
    }

    h2 {
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    p.subtitle {
        color: #555;
        max-width: 700px;
        margin: auto;
        margin-bottom: 40px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        text-align: left;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .card .icon {
        font-size: 28px;
        color: #007BFF;
        margin-bottom: 10px;
    }

    .step-number {
        position: absolute;
        top: -10px;
        right: -10px;
        background: #e6f0ff;
        color: #007BFF;
        font-size: 14px;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 50%;
    }

    .card h3 {
        margin: 10px 0;
    }

    .card p {
        color: #555;
        font-size: 0.95rem;
    }

    @media (max-width: 600px) {
        h2 {
            font-size: 1.8rem;
        }
        p.subtitle {
            font-size: 0.9rem;
        }
    }