/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Page Title */
.personal-page-title {
    background: #005a8d;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.personal-breadcrumbs ol {
    list-style: none;
    padding: 0;
}

.personal-breadcrumbs ol li {
    display: inline;
    margin-right: 5px;
    color: #fff;
}

/* About Section */
.personal-about-errands {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

/* Services Section */
.personal-services {
    padding: 50px 20px;
}

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

.personal-service-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.personal-icon {
    font-size: 40px;
    color: #005a8d;
    margin-bottom: 15px;
}

/* Why Choose Us */
.personal-why-us {
    background: #e8f4fa;
    padding: 50px 20px;
}

.personal-why-us ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.personal-why-us li {
    margin: 10px 0;
    font-size: 18px;
}

/* Call to Action */
.personal-cta {
    background: #0e1d34;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.personal-cta h2 {
    font-size: 2rem;
    color: white;
}

.personal-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.personal-btn {
    background: #024d2e;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.personal-btn:hover {
    background: #ffaa00;
}
