@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #D1D1D1;
    background-color: #1E1E2E;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    text-align: left;
    margin-bottom: 50px;
}

.name {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #C49BD6; 
}

.name strong {
    font-weight: 700;
}

.job-title {
    display: inline-block;
    background-color: #2D2D42;
    color: #C49BD6;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.email {
    display: block;
    font-size: 18px;
    color: #A3A3A3;
    margin-bottom: 10px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: #C49BD6;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #9F7BBF;
}

.lead {
    font-size: 24px;
    font-weight: 300;
    color: #C49BD6;
}

.two-column-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.column {
    width: 48%;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #C49BD6;
}

.list-card {
    margin-bottom: 20px;
    background-color: #29293F;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.list-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #C49BD6;
    margin-bottom: 5px;
}

.list-card span {
    font-size: 14px;
    color: #A3A3A3;
}

.accordion {
    margin-top: 20px;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #393953;
    border-radius: 5px;
    overflow: hidden;
    background-color: #29293F;
}

.accordion-button {
    background-color: #2E2E42;
    border: none;
    padding: 10px 20px;
    text-align: left;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #C49BD6;
    cursor: pointer;
}

.accordion-button:hover {
    background-color: #393953;
}

.accordion-content {
    display: none;
    padding: 10px 20px;
    background-color: #29293F;
}

.accordion-content ul {
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 5px;
    color: #D1D1D1;
}

@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
    }

    .column {
        width: 100%;
        margin-bottom: 30px;
    }

    .name {
        font-size: 36px;
    }

    .lead {
        font-size: 20px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .experience-card h3 {
        font-size: 18px;
    }

    .experience-card h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .name {
        font-size: 28px;
    }

    .job-title {
        font-size: 14px;
    }

    .lead {
        font-size: 18px;
    }

    .section-title {
        font-size: 20px;
    }

    .list-card h3 {
        font-size: 16px;
    }

    .accordion-button {
        font-size: 14px;
    }
}

.hero .lead {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(45deg, #5E2A84, #C49BD6);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .lead:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.list-card a {
    color: #D1A0D1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list-card a:hover {
    color: #4E9AF1;
    text-decoration: underline;
