﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
:root {
    --primary: #003366;
    --secondary: #0066cc;
    --accent: #ffcc00;
    --light: #f8f9fa;
    --dark: #212529;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
}

.col-md-4 {
    flex: 0 0 auto;
    padding-right: 15px;
}

.col-md-8 {
    flex: 1 1 auto;
}

.logoo {
    display: flex;
    align-items: center;
}

    .logoo img {
        width: 50px;
        height: 60px;
    }

h1 {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 600;
}

    h1 span {
        color: var(--primary);
        font-weight: 700;
    }

.section-title {
    font-size: 1.8rem;
    margin: 50px 0 30px;
    color: var(--dark);
    text-align: center;
    font-weight: 600;
}

.card-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card {
    flex: 1 1 450px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    padding: 30px;
    border-top: 4px solid var(--primary);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

.card-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .card-title i {
        color: var(--secondary);
    }

.alert {
    background-color: #f8f9fa;
    border-left: 4px solid var(--secondary);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

ol, ul {
    padding-left: 25px;
    margin-bottom: 25px;
}

li {
    margin-bottom: 10px;
}

ul li {
    margin-bottom: 5px;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

    .btn-primary:hover {
        background-color: #002855;
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

    .btn-secondary:hover {
        background-color: #0055aa;
        transform: translateY(-2px);
    }

.payment-section {
    max-width: 700px;
    margin: 0 auto;
}

.payment-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    border-top: 4px solid var(--accent);
}

.text-center {
    text-align: center;
}

.mt10 {
    margin-top: 10px;
}

.mpesa-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

footer {
    margin-top: 60px;
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    color: #666;
    font-size: 0.9rem;
}

    footer a {
        color: var(--secondary);
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
    }

    .row {
        flex-direction: column;
        text-align: center;
    }

    .col-md-4, .col-md-8 {
        width: 100%;
        padding: 0;
    }

    h1 {
        margin-top: 15px;
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
