  .contact {
        padding: 10px;
        text-align: center;
        position: relative;
    }

    /* Decorative border for contact section */
    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 3px;
        background: linear-gradient(90deg,
            transparent 0%,
            #ff6b35 50%,
            transparent 100%);
        border-radius: 2px;
    }

    .contact h3 {
        color: #333;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contact-item {
        color: #000000;
        font-size: 15px;
        text-decoration: none;
        padding: 5px;
        transition: color 0.3s ease;
    }

    .contact-item:hover {
        color: #ff6b35;
    }
    .terms>a {
        color: dodgerblue;
        text-decoration: underline;
    }

  .powered-by>a {
        color: dodgerblue;
        text-decoration: none;
    }