﻿/* Main Styles */




/* Typography */
h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 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;
}

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;
        }
}
