/* Professional Experience Section Styles */
.professional-experience {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 3% 2rem;
}

.experience-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 3rem 0 2.5rem 0;
    line-height: 1.3;
}

.experience-container {
    display: flex;
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    transition: transform 0.3s ease;
}

.experience-image {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #242424;
    padding: 2rem;
}

.company-logo {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.experience-content {
    flex: 0 0 70%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-header {
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.job-title {
    font-size: 1.2rem;
    color: oklch(0.514 0.222 16.935);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.job-period {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.job-responsibilities {
    padding-left: 1.5rem;
    margin: 0;
}

.job-responsibilities li {
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.job-responsibilities li:last-child {
    margin-bottom: 0;
}

/* Counter section styles */
.counter-section {
    width: 100%;
    background-color: #1e1e1e;
    padding: 2rem 0;
    margin-bottom: 0;
}

.counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 6rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.plus {
    color: oklch(0.514 0.222 16.935);
    font-size: 3rem;
}

.counter-label {
    font-size: 1rem;
    color: #b0b0b0;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.3;
}

/* Mobile styles */
@media (max-width: 768px) {
    .professional-experience {
        padding: 0 1.5rem;
    }

    .experience-container {
        flex-direction: column;
    }

    .experience-image {
        padding: 1.5rem;
        max-height: 180px;
    }

    .company-logo {
        max-height: 120px;
    }

    .experience-content {
        padding: 1.5rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .counter-container {
        gap: 3rem;
    }

    .counter-number {
        font-size: 3.5rem;
    }

    .plus {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .professional-experience {
        padding: 0 1rem;
    }

    .experience-heading {
        font-size: 1.8rem;
        margin: 2rem 0 1.5rem 0;
    }

    .experience-image {
        padding: 1rem;
    }

    .experience-content {
        padding: 1.2rem;
    }

    .company-name {
        font-size: 1.3rem;
    }

    .job-title {
        font-size: 1.1rem;
    }

    .counter-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 0;
    }
}