/* Page Sections */
main section.about-me, main section.work-history, main section.education, main section.skills {
    width: 70%;
    margin: 20px auto;
}

/* Card Styles */
.card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.card-header {
    margin-bottom: 15px;
}
.card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #333;
    display: inline-block;
}
.card-date {
    font-size: 1em;
    color: #666;
    margin: 0 0 4px 0;
    float: right;
}
.card-company {
    font-size: 1em;
    color: #555;
    margin: 0;
    font-weight: 500;
    clear: both;
}
.card-description {
    color: #444;
    line-height: 1.6;
}
.card-description p {
    margin: 0 0 10px 0;
}
.card-description ul, .card-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

/* Skills Section Styles */
.skill-category {
    margin-bottom: 15px;
}
.skill-category-header {
    background-color: var(--accent-color-bg);
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}
.skill-category-header:hover {
    background-color: var(--accent-color-bg);
}
.skill-category-header i {
    font-size: 1em;
}
.skill-list {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 600px) {
        /* Card Styles */
    .card-date {
        float: none;
        display: block;
    }
    .card-title {
        display: block;
    }
}