/* Base styles and resetting defaults */
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /*background-color: #0f172a; /* Cool dark background */
    /*background-color: #fff;
    color: #f3f3f3; /* #f8fafc;*/
    /*display: flex;
    /*justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}*/

/* Section Wrapper */
.l2sla-section {  /* l2sla = links to services list A */
    background-color: #e3e3e3; /*#1e293b; /* Slightly lighter dark panel */
    /*padding: 40px;*/
    border-radius: 16px;
    /*width: 100%;
    max-width: 700px;*/
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);*/
}

.l2sla-link-container {
    background-color: transparent;
}

.l2sla-section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #06391d; /*#38bdf8; /* Bright accent color */
    border-bottom: 2px solid #334155;
    padding-bottom: 10px;
}

/* Row Layout */
.l2sla-link-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #c2c2c2; /* Separator line */
    /* background-color: #2ea538; */
}

/* Remove separator line from the last item */
.l2sla-link-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* First item extra padding fix */
.l2sla-link-item:first-child {
    padding-top: 0;
}

/* Button Styling */
.l2sla-link-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #09639f; /*#0e8828;*/
    color: #fff; /*#0f172a;*/
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(56, 189, 248, 0.2);
}

.l2sla-link-button i {
    font-size: 1.2rem;
}

/* Button Hover State */
.l2sla-link-button:hover {
    background-color: #0676c6; /*#0ea5e9;*/
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(56, 189, 248, 0.4);
}

/* Description Styling */
.l2sla-link-description {
    color: #2e3036; /*#94a3b8;*/
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .l2sla-link-item {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: start;
    }
    
    .l2sla-link-button {
        width: 100%;
        justify-content: center;
    }
}