/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Page Title Section */
.page-title {
    text-align: center;
    padding: 80px 20px;
    background: url('../img/cta-bg2.jpg') center/cover no-repeat;
    color: white;
}
.page-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.page-title p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Section */
.about-errands .content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-errands .text {
    flex: 1;
}
.about-errands .image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Services Section */
.diaspora-services {
    text-align: center;
    padding: 60px 20px;
}
.diaspora-services h2 {
    margin-bottom: 40px;
}
.diaspora-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.diaspora-service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.diaspora-service-card:hover {
    transform: scale(1.05);
}
.diaspora-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.diaspora-service-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}
.diaspora-service-card p {
    padding: 0 15px 20px;
    font-size: 16px;
    color: #666;
}

/* Why Us Section */
.why-us {
    padding: 60px 20px;
    background: #f8f9fa;
}
.why-us h2 {
    text-align: center;
    margin-bottom: 30px;
}
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.benefit-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}
.diaspora-cta {
    text-align: center;
    margin-top: 30px;
}
.diaspora-cta a {
    background: #0e1d34;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
}
.diaspora-cta a:hover {
    background: #03491a;
}

