/* Blogs Page Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}
.blogs-section {
    max-width: 1100px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(40,53,147,0.07);
    padding: 2.5rem 2rem;
}
.blogs-section h2 {
    color: #283593;
    margin-bottom: 2rem;
}
.blog-card {
    background: #f1f3f6;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(40,53,147,0.08);
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
}
.blog-card h3 {
    color: #1a237e;
    margin-bottom: 0.7rem;
}
.blog-card p {
    color: #333;
}
.blogs-banner {
            background: url('../images/blogs-banner.jpg') center/cover no-repeat;
            min-height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            font-size: 2.8rem;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .blogs-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            background: #fff;
            padding: 40px 0 0 0;
        }

        .payment-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 30px;
        }

        .payment-buttons {
            width: 100%;
            max-width: 700px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 18px;
        }

        .paypal-btn,
        .card-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 500;
            border: 2px solid #bbb;
            border-radius: 8px;
            background: #fff;
            color: #222;
            padding: 18px 0;
            width: 100%;
            transition: box-shadow 0.2s, border 0.2s;
            cursor: pointer;
        }

        .paypal-btn i {
            color: #0070ba;
            margin-right: 12px;
        }

        .card-btn i {
            color: #222;
            margin-right: 12px;
        }

        .paypal-btn:hover,
        .card-btn:hover {
            border: 2px solid #0070ba;
            box-shadow: 0 2px 12px rgba(0, 112, 186, 0.08);
        }

        .powered-by {
            color: #0070ba;
            font-size: 1rem;
            margin-top: 10px;
            text-align: center;
        }

        @media (max-width: 900px) {
            .payment-buttons {
                max-width: 95vw;
            }
        }