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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir Light', 'Avenir', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.hero {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.logo {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}

.logo-d {
    color: #8BC34A;
}

.logo-f {
    color: #666;
}

.name {
    font-size: 24px;
    font-weight: normal;
    color: #888;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: auto;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}

.bio {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: left;
    padding-top: 20px;
}

.arrow-down {
    margin-top: 40px;
    text-align: center;
}

.skills-experience {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.skills-column h3 {
    font-size: 14px;
    font-weight: bold;
    color: #8BC34A;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.skills-column ul {
    list-style: none;
}

.skills-column li {
    position: relative;
    padding-left: 15px;
}

.skills-column li:before {
    content: "•";
    color: #8BC34A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.skills-column li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.light-green-hr {
    border: none;
    height: 1px;
    background-color: rgba(139, 195, 74, 0.3);
    margin-bottom: 20px;
}

.linkedin-section {
    text-align: left;
    max-width: 350px;
    margin-bottom: 40px;
}

.linkedin-section p {
    margin: 15px;
    font-size: 20px;
    color: #555;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #8BC34A;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.recent-companies {
    background-color: #1e1a1c;
    padding: 60px 0;
    text-align: center;
}

.recent-companies h2 {
    color: #8BC34A;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.company-column {
    text-align: center;
}

.company-column img {
    max-width: 100%;
    height: auto;
    filter: brightness(0.8);
    opacity: 0.9;
}

.content-showcase {
    background-color: #fff;
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.content-column h2 {
    color: #8BC34A;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.book-item, .podcast-item, .course-item {
    margin-bottom: 40px;
}

.book-item img, .podcast-item img, .course-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

.book-item h3, .podcast-item h3, .course-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.book-item p, .podcast-item p, .course-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-green {
    background-color: #8BC34A;
    color: white;
    padding: 4px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.podcast-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.listen-dropdown {
    position: relative;
    display: inline-block;
}

.listen-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.listen-btn span {
    font-size: 12px;
    color: #8BC34A;
    vertical-align: middle;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 12px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.listen-dropdown:hover .dropdown-content {
    display: block;
}

.listen-icon {
    width: 20px !important;
    height: auto !important;
    cursor: pointer;
    max-width: 20px;
    vertical-align: middle;
    margin-bottom: 0 !important;
}

.learn-more {
    color: #8BC34A;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.coming-soon {
    background-color: #8BC34A;
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.course-badge {
    margin-bottom: 10px;
}

footer {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-name {
    font-size: 24px;
    font-weight: normal;
    color: #888;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon img {
    width: 24px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        text-align: center;
        align-self: center;
        width: 100%;
    }
    
    .profile-image img {
        width: 150px;
        height: 180px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .skills-column {
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .skills-column h3 {
        text-align: center;
    }
    
    .skills-column ul {
        text-align: left;
        display: inline-block;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-column img {
        max-width: 90%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .podcast-controls {
        justify-content: center;
    }
    
    .listen-dropdown {
        text-align: center;
    }
    
    .linkedin-section {
        text-align: center;
        max-width: none;
        margin: 20px auto 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 48px;
    }
    
    .name, .footer-name {
        font-size: 20px;
    }
    
    .content-column h2, .recent-companies h2 {
        font-size: 28px;
    }
    
    .company-column img {
        max-width: 95%;
    }
}