﻿/* Main Styles */
section {
    width: 100%;
}
.column {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.custom-bullets{
    display:none
}
/* Typography */
h1 {
    color: #2c3e50;
    font-size: 28px;
    margin: 25px 0;
    padding: 50px 0 25px;
    border-top: 2px solid #eaeaea;
    text-align: center;
}

/*h2 {
    color: #3cc88f;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #3cc88f;
}*/

.section-header h2 {
    color: #3b3b3b;
    font-size: 22px;
    margin-top: 30px;
    /* margin-bottom: 15px; */
    padding-left: 10px;
    border-left: 4px solid #3cc88f;
    background: #3cc88f;
    padding: 40px;
    margin: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    justify-content: space-around;
    flex-direction: column;
    border: double #fff;
}
h2 span {
    color: #fff;
    text-decoration: underline;
    font-size: medium;
}

p {
    margin-bottom: 15px;
}

/* Lists */
ul {
    margin-left: 5px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.custom-bullets li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3cc88f;
    font-weight: bold;
    font-size: 18px;
}

/* Sections */
.section {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid #eaeaea;
}

    .section:hover {
        background-color: #f0f7fc;
        border-left-color: #3498db;
        transition: all 0.3s ease;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    li {
        padding-left: 20px;
    }

        li:before {
            font-size: 16px;
        }
}
