* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #333; /* Dark background to highlight the main yellow wrapper */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main Yellow Banner Box */
.services-section {
    background-color: #f6f393; /* Matching the soft yellow tone from the post */
    width: 100%;
    max-width: 1200px;
    padding: 50px 40px;
    border-radius: 8px;
}

/* Flexbox container for Left Box and Right Cards */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

/* Left Instructions Box */
.left-box {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.left-box h2 {
    font-size: 26px;
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.left-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* Right Cards Container using Flex */
.cards-wrapper {
    flex: 1.6;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Individual Service Card */
.service-card {
    flex: 1;
    min-width: 150px;
    background: #ffffff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 14px;
    color: #111;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-card p {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Learn More Button */
.learn-btn {
    display: inline-block;
    background-color: #0a66c2;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.learn-btn:hover {
    background-color: #004182;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
}